
function openFlashWin(section){
	var url = "/flashWin.asp?jumpTo=" + section;
	var theWidth = 759;
	var theHeight = 410;
	var theTop=95;
	var theLeft=(screen.width/2)-390;
	var features="height="+theHeight+",width="+theWidth+",top="+theTop+",left="+theLeft+",scrollbars=no";
	theWin=window.open(url,"flashwin",features);
	
	if (theWin == null) { alert('Please disable your popup blocker'); }
	else { theWin.focus(); }
}

function openAffiliateFlashWin(){
	var url = "/flashWin2.asp";
	var theWidth = 732;
	var theHeight = 401;
	var theTop=95;
	var theLeft=(screen.width/2)-390;
	var features="height="+theHeight+",width="+theWidth+",top="+theTop+",left="+theLeft+",scrollbars=no";
	theWin=window.open(url,"flashwin2",features);
	if (theWin == null) { alert('Please disable your popup blocker'); }
	else { theWin.focus(); }
}