function PopWin(URL, width, height) {
	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=yes");
}

function PopNoScroll(URL, width, height) {
	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=0");
}

function PopScroll(URL, width, height) {
	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=1,status=0,menubar=0,scrollbars=yes");
}



function setImage(imgName1,imgName2,type) {
        var imgFile1 = eval(imgName1 + type + "Img.src")
        var imgFile2 = eval(imgName2 + type + "Img.src")
		document.images[imgName1].src = imgFile1
		document.images[imgName2].src = imgFile2
        return false
}
