


//// TOGGLE LAYER ////
function toggleLayer(objId) {
	
	var e = document.getElementById(objId);

	if (e.style.display != 'block' || (e.style.display == '')) {
		e.style.display = 'block';
	}
	else {
		e.style.display = 'none';
	}
}



//// JUMP MENU ////
function jumpMenu(targ,selObj,restore) {
	
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



//// PRINT MESSAGE NOTES ////
function printMessageNotes() {
	
	Notes = document.getElementById('messages_notes_textarea').value;
	document.getElementById('messages_player_right').innerHTML = Notes;

	window.print();
}



//// CREATE POP-UP WINDOW ////

// Facilities Map Settings
var facilitiesMap = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=yes, width=820, height=720, top=200, left=200";

// Give Online Settings
var giveOnline = "toolbar=no, location=yes, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=550, height=600, top=200, left=200";

// Video Messages Settings
var videoMessages = "toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=410, height=500, top=200, left=350";

// CH Plans Settings
var chPlans = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=yes, width=900, height=700, top=200, left=200";


function popUpWindow(url,settings) {

	if (settings) {
		
		var type = settings;
	}
	else {
		
		// Default Settings
		var type = "toolbar=no, location=yes, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=850, height=600, top=50, left=50";
	}
	
	window.open(url,"_blank",type)
}
