var newwindow;
var windowReference;
day = new Date();
id = day.getTime();
function poptastic(url)
{
	newwindow=window.open(url,'name','height=400,width=200');
	if (window.focus) {newwindow.focus()}
}
function oldPopup(URL) {
val("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=400,left = 312,top = 184');");
}
function popUp(URL) {
 windowReference = window.open(URL, '_blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=750,left = 312,top = 184');
 if (!windowReference.opener)
   windowReference.opener = self;
}
