////////////////////////////////////////////////////////////////////																////	Browser sniffer. Script will only be enabled in compliant	////	browsers.													////																////////////////////////////////////////////////////////////////////var isMac = (navigator.userAgent.indexOf("Macintosh") != -1);var isWin = (navigator.userAgent.indexOf("Windows 95") != -1 || navigator.userAgent.indexOf("Windows NT") != -1);var isNS =  (navigator.appName == "Netscape");var isIE =  (navigator.userAgent.indexOf("MSIE") != -1);var ieWin = (navigator.userAgent.indexOf("MSIE") != -1 && (navigator.userAgent.indexOf("Windows 95") != -1 || navigator.userAgent.indexOf("Windows NT") != -1));browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))////////////////////////////////////////////////////////////////////																////	Event handling functions									////																////////////////////////////////////////////////////////////////////function mouseOver ( buttonName ){	if ( ( browser ) && ( buttonName != active ) )	{		document[ buttonName ].src = eval ( buttonName + "_on.src" );	}       }function mouseOut ( buttonName ){	if ( ( browser ) && ( buttonName != active ) )	{		document[ buttonName ].src = eval ( buttonName + "_off.src" );	} }function mouseClick ( buttonName ){	active = buttonName;	if ( browser )	{		document[ buttonName ].src = eval ( buttonName + "_on.src" );	}}function pageLoad ( ){	if ( browser )	{		if ( active != "" )		{			document[ active ].src = eval ( active + "_active.src" );		}	}}////////////////////////////////////////////////////////////////////																////	Popup window opener											////																////////////////////////////////////////////////////////////////////function doCreateNewWindow ( inUrl, inWidth, inHeight ){	window.open(inUrl,'cme_demo','plainWindow,width=' + inWidth +',height=' + inHeight + ',top=0,left=0');}