// JavaScript Document

var window_features ="location=0,statusbar=0,menubar=0,width=989,height=608,scrollbars=yes";
		
function newPopUp(url) {
	var theWindow = window.open(url, "myWindow", window_features);
	theWindow.focus();
	document.getElementById("ePersona").innerHTML = "";
//	document.getElementById("ePersona").style.display='none';
	
	return theWindow;
}
