﻿// JScript File

function newWindow( url, width, height, resize ) 
{ 
var x = (screen.width-width)/2; 
var y = (screen.height-height)/2 - 70; 
//var win = window.open(url, "newwindow", "top=" + x + ",left=" + y + ",width=" + width + ",height=" + height + ",toolbar=0,scroll=0,resize=" + resize);
 var win = window.open(url,'newwindow','top=' + y + ',left=' + x + ',status=yes,toolbar=no,location=no,scrollbars=no,width='+width+',height='+height);
   win.focus(); 
 }