var win
function legal_window(url) {
			win = window.open(url,"legal","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=578,height=600");
}

function closeDep() {
  if (win && win.open && !win.closed) win.close();
}

function closeDep2() {
	  if (link && window.open && !win.closed) win.close();
}


function html_page(url) {
			win = window.open(url,"html","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=yes,resizable=yes,width=970,height=760");
}

function survey_page(url) {
			win = window.open(url,"survey","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=yes,resizable=yes,width=450,height=460");
}


function confirmation(pts, loc) {
    var answer = confirm("Are you sure you want to exit the Sum Of All Thrills World? So far you've racked up "+pts+" points!")
    if (answer){ 
    window.location = loc;
    }
} 

/* Bridge Function to Solve Tracking Issue */
function urchinTracker(page) {
    pageTracker._trackPageview(page);
}

