function openNew(url) {
	splash = window.open(url, name, newfeatures);
	splash.focus();
	}

var	newfeatures = "top=10,left=10,height=600,width=840,resizable=yes,menubar=no,toolbar=no,scrollbars=yes";

function openContact(url) {
	con = window.open(url, name, confeatures);
	con.focus();
	}

var	confeatures = "toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=800";


function ExitAlert() {
	return window.confirm("You are about to leave the Fidelity web site for a web site that is unaffiliated with Fidelity. Fidelity has not been involved in the preparation of the content supplied at the unaffiliated site and does not guarantee or assume any responsibility for its content.");
	}
	
	
function OpenWindow(URL) 
		{ 
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=800');");
		}
	
function OpenImage(url, h, w, l, t) {
		poph = + h + 30
		popw = + w + 30
		disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");
		content = '<HTML>';
		content += '<TITLE>Expanded Image</TITLE>';
		content += '</HEAD>';
		content += '<BODY BACKGROUND="" onBlur="self.close()">';
		content += '<P ALIGN="CENTER"><img src="' + url + '" height="' + h + '" width="' + w + '"></P>';
		content += '<H3 ALIGN="CENTER"><A HREF="#" onClick="self.close()">Close Window</A></H3>';
		content += '</BODY></HTML>';
		disp.document.write(content);
		disp.document.close();
		}

function openPop(sUrl)
{	var sName = "winPop";
	var	sFeatures = "top=30,left=30,height=450,width=800,resizable=yes,menubar=no,toolbar=no,scrollbars=yes";

	window.open( sUrl, sName, sFeatures);
}	

function openInvite(sUrl)
{	var sName = "winInvite";
	var	sFeatures = "top=30,left=30,height=450,width=568,resizable=yes,menubar=no,toolbar=no,scrollbars=yes";
	window.open( sUrl, sName, sFeatures);
}


