function openwindow(url,name,w,h)
	{  
	var hWnd = window.open(url,name,"width=" + w +",height=" + h +",resizable=yes, scrollbars=yes"); 
	if (hWnd.focus != null) 
	hWnd.focus();	   
	}