// JavaScript Document

function doc(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=500,left = 475,top = 150');");
}

function logout() {	
	var browser=navigator.appName;
	if (browser.indexOf("Microsoft") >= 0) {
		if(document.execCommand("ClearAuthenticationCache"))
			window.location = "http://www.mlmrockstar.com/";
	} else {
		alert("To logout you must close your browser.");
	}
}