/*Open Window*/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
/*Check value if number or not*/
function checkvalue() 
{
if (((event.keyCode < 48) ||(event.keyCode > 57 )) & ~(event.keyCode == 45 ) & ~(event.keyCode == 46 )) 
	event.returnValue = false;
}
/*comtrust function*/
function open_window(url) {
ValidationWindow = window.open(url, "ValidationResult", 'toolbar=no, location=yes, directories=no, status=yes, menubar=yes, scrollbars=yes, resizable=yes, width=625, height=450');
}
