﻿// JScript File


function openWindow(url, winWidth, winHeight) {
	var winLeft = (window.screen.width/2) - (winWidth /2 + 10);
	var winTop = (window.screen.height/2) - (winHeight /2 + 50);

	var win = window.open(url,'MyOtherWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + winWidth + ',height=' + winHeight + ',left=' + winLeft + ',top=' + winTop + '');

	win.focus();
}

