//FLASH SNIFFER

document.Flash_Ok = false;

with (navigator){
	if( (appName.indexOf('Netscape') != -1) || (appVersion.indexOf('Mac') != -1) )
	{
		var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0);
		if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >=5) 
		{  
			document.Flash_Ok=true;
		}
	}
}

with (navigator) { 
	if( (appName.indexOf('Microsoft') != -1) && (appVersion.indexOf('Windows') != -1) )
	{
  		document.write('<scr'+'ipt language="VBScript">\nOn error resume next\ndocument.Flash_Ok = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5"))\n</scr'+'ipt>'); 
	}
}



//ROLLOVERS

function imgOver(argImgName){
	document[argImgName].src='/images/btn_' + argImgName + '_over' + '.gif'; } 

function imgOut(argImgName){
	document[argImgName].src='/images/btn_' + argImgName + '.gif';
	}
	
//

function popUp(url,name,features){
	newwin=window.open(url,name,features);
}


