﻿// JScript File

function openlink(URL,w,h) {
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width='+w+',height='+h+',left='+LeftPosition+',top='+TopPosition+''
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '"+id+"',settings);");
}
