function OpenMoi(theURL,x,y,w,h) { 
w=window.open(theURL,"_blank","toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,screenX="+x+",screenY="+y+",width="+w+",height="+h);
MSIE=(navigator.appVersion.indexOf("MSIE")!=-1);
VERS=parseInt(navigator.appVersion);
if ((!MSIE) || (VERS >=5))
w.focus();
} 