function openwin(url,left,top,width,height) { var w = window.open('','','fullscreen=yes'); w.moveTo(left,top); w.resizeTo(width,height); w.location.href = url; w.focus(); }