function openWin(url,title,h,w) {
	attributes = "menubar=0,location=0,scrollbars=yes,resizable=no,width="+w+",height="+h;
	popup = window.open(url,title, attributes);
	popup.focus();
}