// JavaScript Document

function openURL(url) {
	//hard code popup for can't find special investment...
	if(url == "../specialist_investments/cant_find_what_youre_looking_for.asp") {
		openInfoWindow(url);
	}else{
		window.location.href = url;
	}
}
function openInfoWindow(url) {
	window.open(url,'moreinfoWin','width=700,height=500,scrollbars=yes,scrollable=yes');
}



function setCookie(c_name,value,expiredays) {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+
	((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
