	function HideShow(strDivName){
		if(document.getElementById("" + strDivName + "").style.visibility=="visible"){
			document.getElementById("" + strDivName + "").style.visibility="hidden";
		}else{
			document.getElementById("" + strDivName + "").style.visibility="visible";
		}
	}
	function InputTextRemove(strInputBox,strtext){
		if(strInputBox.value==strtext){
			strInputBox.value="";
		}
	}
	function InputTextSet(strInputBox,strtext){
		if(strInputBox.value==''){
			strInputBox.value=strtext;
		}
	}	
            
function getObj(name)
{
	if (document.getElementById)
	{
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	}
	else if (document.all)
	{
		this.obj = document.all[name];
		this.style = document.all[name].style;
	}
		else if (document.layers)
	{
		this.obj = document.layers[name];
		this.style = document.layers[name];
	}
}


function OpeneFlip(strUrl){
	window.open(strUrl, "eFlip", "height=" + screen.availHeight + "px,width=" + screen.availWidth + "px,top=0,left=0,location=0,menubar=0,resizable=1,scrollbars=0,toolbar=0,channelmode=no,fullscreen=no");
}
function swapDisplay(obj){
	var e = document.getElementById(obj);
	if(e.style.display == 'none')
		e.style.display = 'block';
	else
		e.style.display = 'none';
}
