function OpenWin(url,w,h,scroll) { 
	windowfeatures = "width=" + w + ",height=" + h + ",scrollbars=" + scroll + ",resizable=yes"; 
	open(url, "", windowfeatures); 
	return(false);
}