
var popupWindow = null;

function prMapBig(query) {
// #######################
var url = "http://www.stimme.at/ics/system/page_multiCont/pg_prMap_big2.asp?" + query;
var opt = "width=810,height=670,scrollbars=yes,resizable=yes,hotkeys=yes,dependent=yes,status=no";
popupWindow = window.open(url,"",opt);
popupWindow.focus();
}
// locationbar=yes,menubar=yes

function clickImgButton(id) {
//###########################
 if(document.getElementById) 
   document.getElementById(id).click();
}

function hmenue_view(id) {
// #######################
	with (document) {
		if (getElementById)
			getElementById(id).style.display = 'block';
		else if (all)
			all[id].style.display = 'block';
		else
			layers[id].display = 'block';
	}
}

function hmenue_hide(id) {
// #######################
	with (document) {
		if (getElementById)
			getElementById(id).style.display = 'none';
		else if (all)
			all[id].style.display = 'none';
		else
			layers[id].display = 'none';
	}
}

function elementHide(elId) {
//##########################
 if(document.getElementById)
   document.getElementById(elId).style.visibility = "hidden";
}

