// JavaScript Document
function createXMLHttpRequest() 
 {
   try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
   try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
   try { return new XMLHttpRequest(); } catch(e) {}
   alert("XMLHttpRequest not supported");
   return null;
}
function dataLoading(id,str){
	document.getElementById(id).innerHTML = '<table align="center"><tr><td style="font-family: Arial, Verdana, Helvetica; color:#000000; FONT-WEIGHT: bold; FONT-SIZE: 12px;" valign="middle" align="center" height="50"><img src="'+gSitePath+'images/ani-busy.gif" width="32" height="32">&nbsp;&nbsp;&nbsp;&nbsp;'+str+'</td></tr></table>';
}
function popup_window_sc(url, width, height )
{
	
	var popup=window.open(url, "help",'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width='+width+ ',height='+height);
	popup.focus();
	parent.parent.GB_hide();
}