 function openwindow(url) {    
var options = 'width=' + screen.availWidth + ',height=' + screen.availHeight;    
options += ',screenX=0,screenY=0,top=0,left=0';    
var win = window.open(url, '', options);
win.focus();    

}