// JavaScript Document

function openWindow(url) {
	newwidth = 860;
	newheight = 650;
	day = new Date();
	id = day.getTime();
	centerLeft =(screen.width - newwidth)/4;
	centerTop =(screen.height - newheight)/4;
	eval("page" + id + " = window.open(url,"+id+",'height="+newheight+", width="+newwidth+", left = "+centerLeft+",top = "+centerTop+", toolbar=no, menubar=no, scrollbars=1, resizable=1,location=no,status=no');");

}
