// JavaScript Document
window.onerror = null;
 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS4 = (bName == "Netscape" && bVer >= 4);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
 var blink_speed=600;
 var blink_speed2=900;
 var j=0;
 var k=1;
if (NS4 || IE4) {
	if (navigator.appName == "Netscape") {
		layerStyleRef="layer.";
		layerRef="document.layers";
		styleSwitch="";
	}else{
		layerStyleRef="layer.style.";
		layerRef="document.all";
		styleSwitch=".style";
	}
}

//BLINKING
function blinkMsg(layerName){
	if (NS4 || IE4) { 
		if(j%2==0)	 {
			 eval(layerRef+'["'+layerName+'"]'+
			 styleSwitch+'.visibility="visible"');
		} else	 {
			 eval(layerRef+'["'+layerName+'"]'+
			 styleSwitch+'.visibility="hidden"');
		}
	} 
	if(j<1) { j++; }  else { j-- }
	setTimeout("blinkMsg('"+layerName+"')",blink_speed);
}

function blinkMsg2(layerName){
	if (NS4 || IE4) { 
		if(k%2==0)	 {
			 eval(layerRef+'["'+layerName+'"]'+
			 styleSwitch+'.visibility="visible"');
		} else	 {
			 eval(layerRef+'["'+layerName+'"]'+
			 styleSwitch+'.visibility="hidden"');
		}
	} 
	if(k<1) { k++; }  else { k-- }
	setTimeout("blinkMsg2('"+layerName+"')",blink_speed2);
}