function winBRopen(theURL, Name, popW, popH, scroll) { 
	//alert(theURL);
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',noresize';
	Win = window.open(theURL, Name, winProp);
	
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}


function popUpEditPage(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=950,height=700,left = 415,top = 175');");
}