var newWindow=null;

 function setURL(){
	if(document.portalForm.username.value==""){
		alert("Please Enter UserID");
		document.portalForm.username.focus();	
		return false;
	}
	else if(document.portalForm.password.value==""){
		alert("Please Enter Password");
		document.portalForm.password.focus();	
		return false;
	}
	document.portalForm.login_username.value=document.portalForm.username.value;
	document.portalForm.secretkey.value=document.portalForm.password.value;
	document.portalForm.username.value=""
	document.portalForm.password.value=""
	document.portalForm.target="_blank";
	document.portalForm.action = "http://" + document.portalForm.cboServer[document.portalForm.cboServer.selectedIndex].value + ".iksvv.com/src/redirect.php";
}


function validateSearch(){
	if(document.portalForm.keyWord.value==document.portalForm.keyWord.defaultValue || document.portalForm.keyWord.value=="" ||document.portalForm.keyWord.value.length<3){
		alert("Enter initial word atleast 3 characters for searching");
		document.portalForm.keyWord.focus();
	}
	else if(document.portalForm.keyWord.value.indexOf("'")!=-1){
		
		alert("Enter valid keyword")
		document.portalForm.keyWord.focus();
		}
		else{
			newWindow = window.open('/searchSite.asp?keyWord=' + document.portalForm.keyWord.value + '&Portal=n&Search=y',"newWindow","status=no,toolbar=no,location=no,resizable=no,scrollbars=no,width=500,height=300"); 
			newWindow.focus();
		}	
	return false;
 }

function deptSearch(HODID){
	newWindow = window.open('/searchSite.asp?keyWord=' + HODID + '&Portal=y&Search=n',"newWindow","status=no,toolbar=no,location=no,resizable=no,scrollbars=no,width=500,height=300"); 
	newWindow.focus();
 }

function goURL(compID){
//	alert("NIC");
	newWindow = window.open('fileShow.asp?compositTenderID=' + compID ,"newWindow","status=no,toolbar=no,location=no,resizable=yes,scrollbars=no,width=500,height=300"); 
	newWindow.focus();
 }


function stopError(){
	newWindow=null;
	return false;
}

function closeWindow(){
//	opener.newWindow=null;
	window.close();
}

function goBack(){
	window.history.back();
}

function openFrameSite(siteID, siteName, siteAdd, frame){
	if(frame=="n") openSite(siteAdd);
	else{
	   	newWindow = window.open("/pageFrame.asp?siteAdd="+siteAdd+"&siteName="+siteName+"&siteID="+siteID,'newWindow2','toolbar=yes, location=yes, status=yes, menubar=no, scrollbars=yes, resizable=yes,height=200, width=580');
		newWindow.focus();
	}
}

function openSite(siteAdd){
	newWindow = window.open(siteAdd,"newWindow2","status=yes,toolbar=yes,location=yes,resizable=yes,scrollbars=yes,width=580,height=200"); 
	newWindow.focus();
}