
/************************************************/
/*		 LAYER VISIBILITY SWITCH				*/
/************************************************/
/*
function switchView(id) {
	obj = document.getElementById(id);
	if (obj.style.visibility == 'visible'){
		obj.style.visibility = 'hidden';
	}
	else {
		obj.style.visibility = 'visible';
	}
}
*/

// OPEN POPUP WINDOW
function openpopup (url) {
 fenster=window.open(url, "_blank", "width=1050,height=690,status=yes,scrollbars=yes,resizable=yes");
 fenster.focus();
 return false;
}
