// JavaScript Document

function PopUpWin(src, name, width, height) {
	var option = "width=" + width + ", height=" + height + ", resizable=no, scrollbars=no, status=no, menubar=no, toolbar=no, directories=no";
	window.open(src, name, option);
}