var newwindow;
function popwind(url,h,w)
{
	newwindow=window.open(url,'name','scrollbars=yes,menubar=no,resizable=yes,toolbar=no,location=no,status=no,left=200,top=240');	
	newwindow.resizeTo(h,w);
	if (window.focus) {newwindow.focus()}
}