///////////////////////////////////////
// Flash Movie Pop-Up Code
var windowWidth		= 500;
var windowHeight	= 500;

function FlashMovie(name, height, width, code)
{
	this.name = name;
	this.height = height;
	this.width = width;
	this.code = code;
}
function swfMovie(name)
{
	this.name = name;
}
flashMovies = new Array();
flashMovies['test123']				= new FlashMovie('testing123_p2_low.flv,50,testing123_p2_med.flv,150,testing123_p2_high.flv', 350, 297, 'v3');

swfMovies = new Array();
swfMovies['test123']				= new swfMovie('test123_p2.swf');


function popFlash(fId)
{
	if (fId && flashMovies[fId])
	{
		var flashHtml = '<!-- Begin Flash Video for VitalStream FVSS -->'+"\n"+
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+flashMovies[fId].width+'" height="'+flashMovies[fId].height+'" id="FLVPlayer">'+"\n"+
			'	<param name="movie" value="http://peta.sitestream.com/flash/skins/FLVPlayer.swf" />'+"\n"+
			'	<param name="salign" value="lt" />'+"\n"+
			'	<param name="quality" value="high" />'+"\n"+
			'	<param name="scale" value="noscale" />'+"\n"+
			' 	<param name="bgcolor" value="#E0D4B8" />'+ "\n"+
			'	<param name="FlashVars" value="&bgColor=0x666666&configFile=http://flash.vitalstream.com/flashgen.cgi?sname='+flashMovies[fId].name+'%26aname=peta_vitalstream_com/_definst_&autoPlay=true&skinName=http://peta.sitestream.com/flash/skins/haloSkin_2&bufferTime=3&autoRewind=true" />'+"\n"+
			'	<embed src="http://peta.sitestream.com/flash/skins/FLVPlayer.swf"  bgcolor="#E0D4B8" flashvars="&bgColor=0xE0D4B8&configFile=http://flash.vitalstream.com/flashgen.cgi?sname='+flashMovies[fId].name+'%26aname=peta_vitalstream_com/_definst_&autoPlay=true&skinName=http://peta.sitestream.com/flash/skins/haloSkin_2&bufferTime=3&autoRewind=true" quality="high" scale="noscale" width="'+flashMovies[fId].width+'" height="'+flashMovies[fId].height+'" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+'\n'+
			'</object>'+"\n"+
			'<!-- saved from url=(0013)about:internet -->'+"\n"+
			'<!-- End Flash Video for VitalStream FVSS -->';
		var textHtml = '<embed src="http://www.peta2.com/feat/testing123/swf/'+swfMovies[fId].name+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="255" height="195" allowScriptAccess="always"></embed>'+"\n"+
		'<br />' +"\n"+
			'<a target="_blank" href="http://getactive.peta.org/campaign/peta2_Test_Your_Compassion?c=p2test123vida">Sign the Pledge Against Animal Testing</a>' ;
		var fw = window.open('', '', 'height='+windowHeight+',width='+windowWidth+',resizable=1');
		fw.document.write('<html><body background="images/crumple_background.gif" style="font-family: trebuchet ms, arial; font-size: 11px;"><center>'+flashHtml+'<br />Copy and paste the following code to stream this video on your MySpace profile or other personal page:<br /><textarea rows="7" cols="50" wrap="off">'+ textHtml +'</textarea></center></body></html>');

	}
}

// End Flash Movie Pop-Up Code
///////////////////////////////////////