/* OPEN POPUP WINDOW */

function doPopup(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,status=1,resizable=1,menubar=0,scrollbars=no");
}