<!--This launches a window for viewing PDF files -->
function LaunchPDF (PDF) {
	var PDFWin = window.open(PDF, "PDFWin", "scrollbars=1, resizable=1, width=450, height=600");
	PDFWin.focus();
}

<!--This launches a window for viewing photos -->
function LaunchPhoto (PIC) {
	var PhotoWin = window.open(PIC, "PhotoWin", "width=315, height=527");
	PhotoWin.focus();
}

<!--This launches a new browser window for other sites -->
function LaunchNew (URL) {
	var NewWin = window.open(URL, "NewWin", "width=500,height=400,left=150,top=100,resizable=1");
	NewWin.focus();
}

<!--This launches the Contact Form window --> 
function LaunchContact () {
	var ContactWin = window.open("../contactform.asp", "ContactWin", "width=500, height=600, scrollbars=1");
	ContactWin.focus();
}

<!--This launches the Auxilary window --> 
function LaunchAux (URL) {
	var AuxWin = window.open(URL, "AuxWin", "width=605, height=315, scrollbars=1");
	AuxWin.focus();
}

<!--This launches the Video window --> 
function LaunchVid (URL) {
	var VidWin = window.open(URL, "VidWin", "width=625, height=465, scrollbars=0");
	VidWin.focus();
}

<!--This launches the Contractor Registration window --> 
function LaunchContract () {
	var ContractWin = window.open("../contractor-reg.asp", "ContractWin", "width=494, height=295");
	ContractWin.focus();
}

<!--This launches the toubleshooting window for this site -->
function Launchhelp (URL) {
	var helpWin = window.open(URL, "helpWin", "scrollbars=1, resizable=1, width=500, height=450");
	helpWin.focus();
}

<!--This launches a new browser window for photos -->
function LaunchPass (URL) {
	var NewWin = window.open(URL, "NewWin", "scrollbars=1,width=525,height=400,left=150,top=100,resizable=1");
	NewWin.focus();
}
