<!--
function writeSWF(objSWF, intSWFWidth, intSWFHeight) {
  document.writeln('<object'); 
  document.writeln('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"');
  document.writeln('width="' + intSWFWidth + '"');
  document.writeln('height="' + intSWFHeight + '">');
  document.writeln('<param name="movie" value="' + objSWF + location.search + '">');
  document.writeln('<param name="menu" value="false">');
  //<PARAM NAME=bgcolor VALUE=#000000>
  document.writeln('<param name="quality" value="best">');
  document.writeln('<param name="scale" value="noborder">');
  document.writeln('<embed');
  document.writeln('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"'); 
  document.writeln('width="' + intSWFWidth + '"');
  document.writeln('height="' + intSWFHeight + '"');
  document.writeln('src="' + objSWF + location.search + '"');
  document.writeln('menu="false"');
  document.writeln('quality="best"');
  //bgcolor=#000000
  document.writeln('scale="noborder">');
  document.writeln('</embed>');
  document.writeln('</object>');
}

function poppage(mypage,w,h,s,winname){
	var scr = s;
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if(winname == ""){
		var winname = "loading_"+ w + "_" + h;
	}
	var settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scr+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no';
	win=window.open(mypage,winname,settings)
	win.focus()
}


//-->