////////////////////////////////////////////////////////////////////////////////////////////////////// R P C
// R P C
function RPC(sParameters){
	//alert(sParameters);
	var oHead = document.getElementsByTagName('head').item(0);
	var oOld = document.getElementById('RPCScript');
	//if(oOld) oHead.removeChild(oOld);
	var oScript = document.createElement('script');
	oScript.src = 'php/RPC/rpc.php?'+ sParameters;
	//document.write(oScript.src);
	oScript.type = 'text/javascript';
	oScript.defer = true;
	oScript.id = 'RPCScript';
	void(oHead.appendChild(oScript));
}
/////////////////////////////////////////////////////////////////////////////
function Find(sId){
	if (document.all) return document.all[sId];
	if (document.getElementById) return document.getElementById(sId);
	return false;
}
///////////////////////////////////////////////////////////////////////////////////////////////
function WinOpen(sUrl, sName, sWidth, sHeight, sTop, sLeft, sScroll, sStatus){
	if(!sStatus) sStatus = 0;
	if(!sScroll) sScroll = 'yes';
	if(!sName) sName = 'mywin';
	if(!sWidth) sWidth = '1000';
	if(!sHeight) sHeight = '500';
	if(!sTop) sTop = (screen.height / 2) - (sHeight / 2);
	if(!sLeft) sLeft = (screen.width / 2) - (sWidth / 2);
	sProperties = 'history=no,toolbar=0,location=0,directories=0,scrollbars='+sScroll+',status='+sStatus+',menubar=0,width='+sWidth+',height='+sHeight+',top='+sTop+',left='+sLeft+'';
	window.open(sUrl, sName, sProperties) ;
}