var msg = "You are about to leave the Fidelity web site\n"
		+ "for a web site that is unaffiliated with Fidelity.\n"
		+ "Fidelity has not been involved in the\n"
		+ "preparation of the content supplied at the\n"
		+ "unaffiliated site and does not guarantee\n"
		+ "or assume any responsibility for its content.\n";

function confirmRedirect(newsite,type) {
        if (type==1){
        	if(confirm(msg)) {
                	window.open(newsite, "popup",'height=580,width=780,menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,left=20,top=20'); 
        		}
        } else {
                window.open(newsite, "popup",'height=580,width=780,menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,left=20,top=20');
        }
}