/*Disclaimer.js
***************
functions:
	confirmAge- called when user clicks "Enter", sets cookie to expire in 1 day
***************
*/
function goBack(){
	parent.GB_hide('goback');
}
function confirmAge(existing){
	var days=1;
	var date = new Date();
	date.setTime(date.getTime()+(days*24*60*60*1000));
	var expires = date.toGMTString();
	cookieString="mirassou-com-visited=true; expires="+expires+"; path=/";
	document.cookie=cookieString;
	//if(existing) window.parent.location="../index.asp";
	parent.GB_hide();
	return false;
}

//Function to open pop window for user agreement, etc.
function showWindow(win,title){
 window.open(win,title,'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=500,height=500');
 return false;
 }


