function openWin(url,w,h) {
	nw=window.open(url, "_blank", "width="+w+",height="+h+", resizable=yes, scrollbars=yes");
	nw.resizeTo(w,h);
	return false;
}


