﻿// JScript File
<!--
// A collection of routines for Corinthian Door

// Routine to print the window
function OnSearch()
	{
	if (document.FormDefault.FormFieldSearchText.value == "")
		alert("Please enter a search word.");
	else
		{
		document.FormDefault.action = document.FormDefault.RelativeRoot.value + "Search/Default.aspx";
		document.FormDefault.submit();
		}
	}

// Routine to print the window
function onPrintPage()
	{
	window.print();
	}

// Routine to email the page to a friend
var TheWindowOpen;
function OnWindowOpen(TheWindowName, TheLocation, TheWidth, TheHeight)
	{
	var ThePopupLocation = "" + TheLocation;
	var TheWindowLeft = 0;
	TheWindowLeft = (screen.width - TheWidth) / 2;
	var TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=no,status=no,statusbar=no,resizable=no,title=no,titlebar=no,top=230,left=" + TheWindowLeft + ",width=" + TheWidth + ",height=" + TheHeight;
	if (TheWindowOpen && !TheWindowOpen.closed)
		TheWindowOpen.location = ThePopupLocation;
	else
		TheWindowOpen = window.open(ThePopupLocation,TheWindowName,TheWindowParams);
	TheWindowOpen.focus();
	}

//-->
