// JavaScript Document
	var popUpWin=0;
	function popUpWindow(URLStr, left, top, width, height)
	{
	  if(popUpWin)
	  {
		if(!popUpWin.closed) popUpWin.close();
	  }
	  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	}
	
	function clear_search_text()
	{
		if (document.form.searchString.value == "Search Domain / Web Name")
			document.form.searchString.value = "";	
	}
	
	function validate_search(forms){
			if ( forms.searchString.value != "" ) {
	//				forms.SearchButton.disabled = true;
	//				forms.SearchButton.value = 'Please wait...';
					return true;
			}
			else {
					alert("Please enter domain name to search.");
					forms.searchString.focus();
					return false;
			}		
	}

