// JavaScript Document

function CloseWindow() {
	window.close();
}

function printWindow() {
	browserVersion = parseInt(navigator.appVersion);
	if (browserVersion >= 4) window.print();
}

function ShowHours() {
	window.open('http://www.tstd.org/HolidayHours.php', 'tSTDWindowHours', 'width=520,height=350,resizable,top=0');
}

function ShowMoneyOrder(sPIN, sSubmitDate, sVisitDate, sPrice) {
	sURL = 'info_money_order.php';
	sURL += '?pin=' + sPIN;
	sURL += '&ordered=' + sSubmitDate;
	sURL += '&tested=' + sVisitDate;
	sURL += '&package=Health Test Panel';
	sURL += '&cost=' + sPrice;
	window.open(sURL, 'tSTDWindowMoneyOrder', 'width=420,height=450,resizable,top=0');
}

function whatsThisHSV1() {
	window.open('info_hsv1.html', 'WindowCVV2', 'width=420,height=200,scrollbars=no')
}
