	
<!-- Begin
function popUp(URL,width,height) {
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var size = "width=" + width + ", height=" + height +" ,left=" + left + " ,top="+ top;
	insert_window = window.open(URL, 'insert_window', 'toolbar=0,scrollbars=1,statusbar=0,menubar=0,resizable=1,'+size);
//	insert_window = window.open(URL, 'insert_window', 'toolbar=1,scrollbars=1,statusbar=1,menubar=1,resizable=1,'+size);
	insert_window.focus();
	}

function popUpnoScroll(URL,width,height) {
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var size = "width=" + width + ", height=" + height +" ,left=" + left + " ,top="+ top;
	insert_window = window.open(URL, 'insert_window', 'toolbar=0,scrollbars=0,statusbar=0,menubar=0,resizable=0,'+size);
//	insert_window = window.open(URL, 'insert_window', 'toolbar=1,scrollbars=1,statusbar=1,menubar=1,resizable=1,'+size);
	insert_window.focus();
	}

function popUpexp(URL,width,height) {
	var mheight = height + 150;
	var left = (screen.width - width) / 2;
	var top = (screen.height - mheight) / 2;
	//alert(screen.width + " -> " + screen.height + " -> " + left + " -> " + top );
	var size = "width=" + width + ", height=" + height +" ,left=" + left + " ,top="+ top;
	insert_window = window.open(URL, 'insert_window', 'toolbar=1,scrollbars=1,statusbar=1,menubar=1,resizable=1,location=1,'+size);
//	insert_window = window.open(URL, 'insert_window', 'toolbar=1,scrollbars=1,statusbar=1,menubar=1,resizable=1,'+size);
	insert_window.focus();
	}
// End -->
