<!--
function popUp(url, width, height, scrolls) {
		winOptions = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scrolls + ",resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",screenX=20,screenY=20";
		var win = window.open(url, 'Horchow', winOptions);
		if (!win.opener) win.opener = self; // For JS1.0
		if (win.focus) win.focus();
}


function MakeHomePage( fr ) {
	fr.style.behavior='url(#default#homepage)';
	fr.setHomePage('http://www.investorsinternet.com/');

	return false;
}

function Logout() {
	var agree=confirm("Are you sure you wish to Logout ?");
	if (agree){
		window.location = '/logout.html';
		return true ;
	}else{
		return false ;
	}
}

//-->