var hostURL =  "http://localhost:8080";

function doSearch() {
	
		//if (document.searchForm.base.value == "") document.searchForm.base.value=document.location.href;
		
		
		/*
		sString = document.searchForm.search.value;
		if (sString.indexOf("*")==0) {
			hostURL = "http://10.33.246.253";
			document.searchForm.search.value = sString.substring(1,sString.length);
		}
		*/
		//hostURL =  "http://10.33.246.253";
		//document.searchForm.action =  hostURL +"/WebGen/servlet/fullTextSearchServlet";
		document.searchForm.action="WebGen/search.do";
		document.searchForm.submit();
}


function getWinPosition(xsize,ysize) {
	dimString  = "dependent=true, left="+Math.floor((screen.width - xsize)/2);
	dimString += ",top="+(Math.floor((screen.height- ysize)/2)-15);
	dimString += ",width="+xsize;
	dimString += ",height="+ysize;
	 
	return dimString;
}


function openDemo(url, width, height) {
	preview = window.open(url, "Demo", getWinPosition(width,height)+",status=yes");
	preview.focus();
}



