///////////////////////////////////////
// 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['pam_kfc_320']			= new FlashMovie('pam_kfc_320_low.flv,50,pam_kfc_320_med.flv,150,pam_kfc_320_high.flv', 335, 255, 'v3');
flashMovies['jenna_jameson_kfc']			= new FlashMovie('jenna_jameson_kfc_low.flv,50,jenna_jameson_kfc_med.flv,150,jenna_jameson_kfc_high.flv', 335, 255, 'v3');
flashMovies['pilgrims_web320']			= new FlashMovie('pilgrims_web320_low.flv,50,pilgrims_web320_med.flv,150,pilgrims_web320_high.flv', 335, 255, 'v3');
flashMovies['45_days']			= new FlashMovie('45_days_low.flv,50,45_days_med.flv,150,45_days_high.flv', 335, 255, 'v3');
flashMovies['perdue']			= new FlashMovie('perdue_low.flv,50,perdue_med.flv,150,perdue_high.flv', 335, 255, 'v3');
flashMovies['hillside']			= new FlashMovie('hillside_low.flv,50,hillside_med.flv,150,hillside_high.flv', 335, 255, 'v3');
flashMovies['oz_chickens']			= new FlashMovie('oz_chickens_low.flv,50,oz_chickens_med.flv,150,oz_chickens_high.flv', 335, 255, 'v3');
flashMovies['sharpton_long']			= new FlashMovie('sharpton_long_low.flv,50,sharpton_long_med.flv,150,sharpton_long_high.flv', 335, 255, 'v3');
flashMovies['bea_kfc']			= new FlashMovie('bea_kfc_low.flv,50,bea_kfc_med.flv,150,bea_kfc_high.flv', 335, 255, 'v3');
flashMovies['kfc_demo_alaska']			= new FlashMovie('kfc_demo_alaska_low.flv,50,kfc_demo_alaska_med.flv,150,kfc_demo_alaska_high.flv', 335, 255, 'v3');
flashMovies['dick_gregory_psa']			= new FlashMovie('dick_gregory_psa_low.flv,50,dick_gregory_psa_med.flv,150,dick_gregory_psa_high.flv', 335, 255, 'v3');
flashMovies['auckland_rescue']			= new FlashMovie('auckland_rescue_low.flv,50,auckland_rescue_med.flv,150,auckland_rescue_high.flv', 335, 255, 'v3');
flashMovies['kfcp2']			= new FlashMovie('kfcp2_low.flv,50,kfcp2_med.flv,150,kfcp2_high.flv', 335, 255, 'v3');
flashMovies['hawthorne_heights_kfc']			= new FlashMovie('hawthorne_heights_kfc_low.flv,50,hawthorne_heights_kfc_med.flv,150,hawthorne_heights_kfc_high.flv', 335, 255, 'v3');

swfMovies = new Array();
swfMovies['pam_kfc_320']			= new swfMovie('pam_kfc_320.swf');
swfMovies['jenna_jameson_kfc']			= new FlashMovie('jenna_jameson_kfc.swf');
swfMovies['pilgrims_web320']			= new swfMovie('pilgrims_web320.swf');
swfMovies['45_days']			= new swfMovie('45_days.swf');
swfMovies['perdue']			= new swfMovie('perdue.swf');
swfMovies['hillside']			= new swfMovie('hillside.swf');
swfMovies['oz_chickens']			= new swfMovie('oz_chickens.swf');
swfMovies['sharpton_long']			= new swfMovie('sharpton_long.swf');
swfMovies['bea_kfc']			= new swfMovie('bea_kfc.swf');
swfMovies['kfc_demo_alaska']			= new swfMovie('kfc_demo_alaska.swf');
swfMovies['dick_gregory_psa']			= new swfMovie('dick_gregory_psa.swf');
swfMovies['auckland_rescue']			= new swfMovie('auckland_rescue.swf');
swfMovies['kfcp2']			= new swfMovie('kfcp2.swf');
swfMovies['hawthorne_heights_kfc']			= new swfMovie('hawthorne_heights_kfc.swf');


function popFlash(fId)
{
	if (fId && flashMovies[fId])
	{
		var url = 'flashMovie.asp?movieName='+ swfMovies[fId].name +'&movieCode='+ flashMovies[fId].code;
		var fw = window.open(url, '', 'height='+windowHeight+',width='+windowWidth+',resizable=1');
		fw.focus();
	}
}

// End Flash Movie Pop-Up Code
///////////////////////////////////////
