window.name='landbrug';

function PopWin(url,title,h,w) { 
	popupWin = window.open(url,title,'scrollbars=yes,resizable=yes,height=' + h + ',width=' + w+'');// ' + h + '
	popupWin.focus();
} 

function PopWinAdv(url,title,h,w,location,menu,scrollon,resize,toolbar,status) {
	popupWin = window.open(url, title, 'location='+location+',menubar='+menu+',toolbar='+toolbar+', scrollbars='+scrollon+', resizable='+resize+', height=' + h + ', width=' + w + ', top=140,left=190')// ' + h + '
//	if (popupWin.opener == null) popupWin.opener = self;
	popupWin.focus();
}

function Popup_open(urlStr) {
	this_win=window.open(urlStr,'Popup','scrollbars=yes,resizable=no,width=366,height=400,top=169,left=177');
        this_win.focus();
}

function PopupVideo(url) {
	popupWin = window.open(url, 'Videoklip', 'location=no,menubar=no,toolbar=no, scrollbars=no, resizable=no, height=308, width=474, top=140,left=190')// 308 
//	if (popupWin.opener == null) popupWin.opener = self;
	popupWin.focus();
}

function setVisible(id, selectWhat, unik) {

		for (var i = 0; i < selectWhat.length; i++) {
			var what = selectWhat.options[i].value
				if (what != "") {
				document.getElementById("select" + what + unik).style.display = "none";
			}
		}
		if (id) {
		document.getElementById("select" + id + unik).style.display = "block";
		}

}