// JScript source code

function initialize()
{
	initializeLeftMenu();
	initializeTopMenu();
	
	showHideMenu();
	
}

function NewWindow(URL,height,width)
{
	var viewimageWin = window.open(URL,'_blank','menubar=1,toolbar=1,location=1,status=1,resizable=1,maximizeable=1,scrollbars=1,width=900, height=500')
	viewimageWin.moveTo(screen.availWidth/2-(900/2),screen.availHeight/2-(700/2));
}

	function OpenCallback()
{
	mywin = window.open('/english/support/hosting-controller-call-back-request.html',"browseing","height=510,width=591,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,titlebar=no,");
	
}

	function showhide(str)
{
	if (document.getElementById(str).style.display == "none")
			document.getElementById(str).style.display = "";
		else
			document.getElementById(str).style.display = "none";
}


function ChangeBtnClass(State)
	{
		if(State == 1)
			document.getElementById("Submit").className = "btn2";
		else 
			document.getElementById("Submit").className = "btn";	
	}