  function openScript(url, width, height)
	{
        var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no, top=0, left=0' ) ;
        Win.focus() ;
	}
	
