<!--//
function help_popup() 
{
	win1=window.open('help.asp','new','height=350,width=420,location=no,directories=no,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
	return false;
}
//-->

<!--//
function open_Custom_Window(page,Dims) {
	OpenWin = this.open(page, "new",Dims )
}
//-->

<!----// === Log Out === 
function logOut(delthis) {
	if(confirm("Do you really want to logout"))
	window.location=delthis;
}
//-->


function cmdprint(){
document.all.printSpan.style.display = 'none';

window.print();
}
function window.onafterprint(){
document.all.printSpan.style.display='';

}


<!--

// OpenCalendar
// The OpenCalendar function can be used as a shortcut to the actual window.open statement that 
// ultimately must be issued.  OpenCalendar includes a rudimentary popup blocker detection
// system that unfortunately won't always work because of a wide variety of methods employed
// to block popup windows.  You may want to inform your guests that popup blockers should be
// disabled for your site for proper functioning.

function OpenCalendar(inVariable, inField, inCallback, inDefault, inDayStyle, inBlnClose, inBlnWeekends)
{

var myForm=inField;
var myForm_array=myForm.split(".");

//alert(myForm_array[0])

	var strURL;
	var hWnd; 
	
	if (inVariable) strURL = "inVariable=" + inVariable;
	else if (inField) strURL = "inField=" + inField;
	else if (inCallback) strURL = "inCallback=" + inCallback;
	else strURL = "invalid=True";
	
	if (inDefault) strURL += "&inDefault=" + inDefault;
	if (inBlnClose) strURL += "&inBlnClose=" + inBlnClose;
	if (inBlnWeekends) strURL += "&inBlnWeekends=" + inBlnWeekends;
	if (inDayStyle) strURL += "&inDayStyle=" + inDayStyle;
	
	strURL += "&inFormat=" + document.forms[0].selFormat.value;
	strURL += "&inDelimiter=" + document.forms[0].txtDelim.value;
	
	hWnd = window.open( "datepicker/ASPDatePicker.asp?" + strURL, "ASPDatePicker",
		"menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no,width=180,height=130");
		
	if (!hWnd) alert("Please disable popup blockers to use the Date Picker calendar.");
}

//-->