﻿// JScript File

function popup(url, width, height)
{
    time = new Date();
    winId = time.getTime().toString();

	var wtop = (screen.height - height) / 2 - 75;
	var wleft = (screen.width - width) / 2;
	var ref = window.open(url,winId,'width='+width+',height='+height+',top='+wtop+',left='+wleft+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
  ref.focus();
}
