// JavaScript Document

/*popup window script */
	function popwin (url, name, width, height) {
	var left=0;
	var top=0;
	var opt =  "width="  + width + ",height=" + height + ",left=" + left  +  ",top=" + top + ",toolbar=no,location=no,scrollbars=no,resize=0";
	var win = window.open (url, name, opt);
	win.opener=this;
	win.focus();
}
