function mypop(url,title,w,h) {

/*		if(title == null || title == undefined)
		{
			title = "mypop";
		}			
		if(w == null || w == undefined)
		{
			w = 400;
		}	

		if(h == null || h == undefined)
		{
			h = 300;
		}	
		*/
			
                var param = 'width=' + w + ',height=' + h ;

                param += ',resizable=yes,scrollbars=yes,top=100,left=100';

                

                var hWnd = window.open(url,title,param);
	//			alert(hWnd.focus);
       // if (hWnd.focus != null) hWnd.focus();
		hWnd.focus();

        }
		
