	function flashTrace(url,id,w,h,bg,vars,win){
		var flashStr=
		"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
		"<param name='allowScriptAccess' value='always' />"+
		"<param name='movie' value='"+url+"' />"+
		"<param name='base' value='swf' />"+
		"<param name='FlashVars' value='"+vars+"' />"+
		"<param name='wmode' value='"+win+"' />"+
		"<param name='quality' value='high' />"+
		"<param name='bgcolor' value='"+bg+"' />"+
		"<embed src='"+url+"' base='swf' FlashVars='"+vars+"' wmode='"+win+"' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
		"</object>";
		document.write(flashStr);
	}




function setPng24(obj) { 

	obj.width=obj.height=1; 

	obj.className=obj.className.replace(/\bpng24\b/i,''); 

	obj.style.filter = 

	"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');" 

	obj.src='';  

	return ''; 

} 

function handle_Layer(){

   var div_Layer = document.getElementById("login_page"); 
   var div_login =  document.getElementById("login_layer");
   var AttendLayer =  document.getElementById("AttendLayer");

   if(AttendLayer.style.display){ 
      div_Layer.style.display = ""; 
      div_login.style.display = ""; 
      AttendLayer.style.display = ""; 
	  self.location.hash='AttendLayer';
	  document.body.style.overflow='hidden';

   }else{ 

      div_Layer.style.display = "none";
      div_login.style.display = "none"; 
      AttendLayer.style.display = "none"; 
	  document.body.style.overflow='auto';
   }

}


<!--
self.onError=null;
currentX = currentY = 0; 
whichIt = null; 
lastScrollX = 0; lastScrollY = 0;
NS = (document.layers) ? 1 : 0;
IE = (document.all) ? 1: 0; 

<!-- STALKER CODE -->
function heartBeat() {
if(IE) { 
diffY = document.documentElement.scrollTop; 
diffX = 0; 
}
if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
if(diffY != lastScrollY) {
percent = .1 * (diffY - lastScrollY);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.floater.style.pixelTop += percent;
if(NS) document.floater.top += percent; 
lastScrollY = lastScrollY + percent;
}
if(diffX != lastScrollX) {
percent = .1 * (diffX - lastScrollX);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.floater.style.pixelLeft += percent;
if(NS) document.floater.top += percent;
lastScrollY = lastScrollY + percent;
} 
} 
if(NS || IE) action = window.setInterval("heartBeat()",1);
//-->


function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 
