
function SubWin_wp(url){
	w = 830;
	h = 800;
	e = "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

	d = new Date();
	n = d.getMinutes() +"_"+ d.getMilliseconds();
	p = e + ",width=" +w+ ",height=" +h;
	win = window.open(url, n, p);
	win.focus();
}
