function printPage() {
	if(! window.print){
		alert("Your browser does not support this functionality.  Please use the print option from your menu bar.");
	} else {
		window.print();
	}
}
	
	
var externWin;
function openPopupName(strName, strURL, intHeight, intWidth, intTop, intLeft, blnLocation, blnMenuBar, blnResizable, blnScrollbars, blnStatus, blnToolbar, blnDependent) {
	if(!externWin || externWin.closed || externWin.name != strName){
		externWin = window.open(strURL, strName, "height=" + intHeight +  ",width=" + intWidth + ",top=" + intTop + ",left=" + intLeft + ",location=" + blnLocation + ",menubar=" + blnMenuBar + ",dependent=" + blnDependent + ", resizable=" + blnResizable + ",scrollbars=" + blnScrollbars + ",status=" + blnStatus + ",toolbar=" + blnToolbar);
	}
	else{
		externWin.location = strURL;
		externWin.focus();
	}
}

function openNamedMovie(strTarget, width, height){
	openPopupName('FlashMovie', strTarget, height, width, 100, 100, 0, 0, 1, 0, 0, 0, 1);
}

function searchClicked(value){
    //alert("searchClicked");
    document.location="/search.aspx?fldSearch=" + value;
}

function handleSearchEnterKeyCheck (field, event) {
		var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
		if (keyCode == 13) {
			searchClicked(field.value);
			return false;
		} 
		else //Allow key to go through
		    return true;
}     