
function flash_obj(classid,fileName,width,height) 
{
	str="<object classid='"+classid+"' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+width+"' height='"+height+"' VIEWASTEXT>";
	str=str+"<param name='movie' value='"+fileName+"'>";
	str=str+"<param name=quality value=high>";
	str=str+"<PARAM NAME=wmode VALUE=transparent>";
	str=str+"<embed src='"+fileName+"' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed>";
	str=str+"</object>";
	document.write(""+str+"");
}

function setVariables() {
	if (navigator.appName == "Netscape") {
		v=".top=";
		dS="document.";
		sD="";
		y="window.pageYOffset";
	}
	else {
		v=".pixelTop=";
		dS="";
		sD=".style";
		y="document.body.scrollTop";
	}
}
function checkLocation() {
	object="quick_menu";
	if (eval(y)<276){
		yy=276;
	}else{
		yy=eval(y);
	}
	eval(dS+object+sD+v+yy);
	setTimeout("checkLocation()",2);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}