/************************************************************
Javascript include file
*************************************************************/

<!--
// Opens window
function MM_openBrWindow(theURL,winName,features) 
{ //v2.0
	window.open(theURL,winName,features);
}	

//Opens window with a warning message
function MM_openBrWindowWithWarning(theURL,winName,features) 
{ //
	
	
	msg = 'Warning!!! \nThe content you are about to view either contains partial nudity ' +
					'or is of a graphic nature.\n\n  If you are 18 years of age or older please ' +
					'press OK to continue.  If you are not please press cancel.'; 
	if(confirm(msg))
	{
		window.open(theURL,winName,features);
	}
	
}

function loadPage(url)
{
	window.location = url;
}

function searchFunction(txtBox)
{
	txtBox.value="";
	txtBox.focus;
}
			
//-->




