

// Window Opening / Closing Funcitons ----------------------- START ---------------

function openLargePopup( url, windowname ) {
  var popup = window.open( url , windowname, "toolbar=yes,status=yes,scrollbars=yes,menubar=yes,locationbar=no,top=50,left=70,outerWidth=643,outerHeight=468,width=643,height=468,resizable=yes");
  popup.focus();
}

// Window Opening / Closing Funcitons ----------------------- END ---------------




// Style Select ---------------------- START ------------------------

var stylesheet ="";

if (navigator.platform == "MacPPC") {
	stylesheet = "mac";
} else {
	stylesheet = "win";
}


function styleSetL0() {
	if(stylesheet != ""){
		document.write('<link rel="stylesheet" type="text/css" href="css/textsets_'+stylesheet+'.css">');
	}
}

function styleSetL1() {
	if(stylesheet != ""){
		document.write('<link rel="stylesheet" type="text/css" href="../css/textsets_'+stylesheet+'.css">');
	}
}

function styleSetL2() {
	if(stylesheet != ""){
		document.write('<link rel="stylesheet" type="text/css" href="../../css/textsets_'+stylesheet+'.css">');
	}
}
// Style Select ---------------------- END ------------------------


