
//Window opener
function popupWin(page, thisTitle, winWidth,winHeight){
pWin=window.open(page,thisTitle,'toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no,width=' + winWidth +',height=' + winHeight);
}

function popupWinScroll(page, thisTitle, winWidth,winHeight){
pWin=window.open(page,thisTitle,'toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=' + winWidth +',height=' + winHeight);
}

//Set page title
function setPageTitle(thisTitle) {
	document.title = thisTitle;
}


var manFlag = false;
var setType = "";

function GoManual() {
	var manFlag = true;
}

function SetType() {
	if (manFlag == false) {
		if (document.forms[1].search_term.value.search('^RSN|^REB|^RCY|^RLD|^RSA|^REC|^rsn|^reb|^rcy|^rld|^rsa|^rec') != -1) {
			var setType = 'serial';
			document.forms[1].search_type[3].click();
			//alert('found serial');
		} else if (document.forms[1].search_term.value.search('@') != -1) {
			var setType = 'email';
			document.forms[1].search_type[2].click();
		} else if (document.forms[1].search_term.value.search(' ') != -1) {
			var setType = 'email';
			document.forms[1].search_type[1].click();
		} 		
		
	}
}
