
var version = 1.1;

//	alert("You're compatible with JavaScript version: " + version);

function errorHandler(message, url, line)
{
   // message == text-based error description
   // url     == url which exhibited the script error
   // line    == the line number being executed when the error occurred

   // handle the error here
	
//	alert('Error: ' + message + '\nAt URL: ' + url + '\nOn Line: ' + line);
	
   // stop the event from bubbling up to the default window.onerror handler
   // (see the "For More Info" section for an article on event bubbling)
   // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnscrpt/html/weberrors2.asp
   return true;
}
//window.onerror=errorHandler;

function openerRefresh() {
	if (window.opener && window.opener.refreshMe) {
		window.opener.refreshMe();
		return;
	}
	if (window.opener && window.opener.refreshme) {
		window.opener.refreshme();
		return;
	}
	if(typeof window.opener.location == 'object') {
		window.opener.location = window.opener.location;
	}
}
function actionOnEnter(event,action) {
	if(is_ie && window.event.keyCode==13) 
		eval(action);
	else 
		if(is_nav && event.which==13) 
			eval(action);
}