function gotoPage() {
	alert(page.value);
}

On = new Image();
On.src = "on/x.gif";


function imgOn(imgName) {
	document [imgName].src = eval((imgName) + "On.src");
}
function imgOff(imgName) {
	document [imgName].src = "off/" + (imgName) + ".gif";
}

function pdfWindow(PDFPages) {
	var tempStuff = PDFPages + ",";
	var arrPDFPages = tempStuff.split(",");
	
	for (i=3; i < arrPDFPages.length-1; i++) {
		popUp=window.open("PDFDisplay.asp?Catalog="+arrPDFPages[1]+"&Vendor="+arrPDFPages[2]+"&Page="+arrPDFPages[i],"PDFWindow"+i);
		//popUp.innerWidth = screen.width;
		//popUp.innerHeight = screen.height;
		//popUp.screenX = 0;
		//popUp.screenY = 0;
		popUp.focus;
	}
}
