﻿function newWindow(url,width,height) 
{
	day = new Date();
	id = day.getTime();
	PageName = "Page"+id
    //PageName = window.open(url,PageName,'toolbar=no,top=no,left=no,width='+width+',height='+height+',location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,copyhistory=0'); 
    PageName = window.open(url,PageName,'toolbar=no,width='+width+',height='+height+',location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,copyhistory=0'); 
    //self.document.title
}	

function closeWindow()
{
		window.opener.focus();
		close();
}

function newFreeWindow(url) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(url, '" + id + "');");
}
