



//____________________start POPUP contact us WINDOW
var newWindow

function newContactUnisysWindow()
{
	newWindow = window.open("","Contact","toolbar=false,scrollbars=true,location=false,resizable=false,status=true, screenX=10,screenY=10,width=500,height=500") 
	newWindow.focus()
}

//____________________start POPUP case study WINDOW
var newWindow

function newCaseStudyWindow() 
{
  newWindow = window.open("","CaseStudy","scrollbars=yes,resizable=no,width=517,height=517") 
  newWindow.focus()
}


//________________________ Search Specific _________________

	function validateInput() {
		if (document.queryform.qstr.value == ''){
			alert("You need to enter a query string.");
			document.queryform.qstr.focus();
			return false;
		}else{
			document.queryform.submit();
		}
	}
