function urlencode(text) {

  text = text.replace(/ /g,"%20");
  text = text.replace(/ö/g,"%c3%b6");
  text = text.replace(/Ö/g,"%c3%96");
  text = text.replace(/ä/g,"%c3%a4");
  text = text.replace(/Ä/g,"%c3%84");
  text = text.replace(/å/g,"%c3%a5");
  text = text.replace(/Å/g,"%c3%85");
  text = text.replace(/&/g,"%26");
  
return text;
}


function openMovie(moviePath, title){
moviePath = urlencode(moviePath);
title = urlencode(title);
window.open('/popups/movie_popup.aspx?path='+moviePath+'&title='+title+'','5','menubar=no,scrollbars=0,status=no,resizable=no,width=340,height=420');
}
function openSurvey(){

window.open('/popups/survey.aspx','5','menubar=no,scrollbars=1,status=no,resizable=no,width=353,height=550');
}
function openBigMovie(moviePath, title){
moviePath = urlencode(moviePath);
title = urlencode(title);
window.open('/popups/movie_popup_big.aspx?path='+moviePath+'&title='+title+'','5','menubar=no,scrollbars=0,status=no,resizable=no,width=340,height=500');
}



function openGeneralContact(Subject) {

Subject = urlencode(Subject);

window.open('/popups/generalcontact_popup.aspx?subject='+Subject+'','5','menubar=no,scrollbars=0,status=no,resizable=no,width=335,height=375');
}

function openGalleryImage(ifile,ix,iy,ititle) { 
		var win;
		var sWidth;
		var sHeight;
		win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");
		
		if ((document.layers) ? 1 : 0) {
		sWidth = win.innerWidth;
		sHeight = win.innerHeight;
		} else {
		sWidth = win.document.body.clientWidth;
		sHeight = win.document.body.clientHeight;
		}
		if(sWidth!=ix || sHeight!=iy) {
		
		return;
		}
		win.document.open();
		win.document.write("<html><head><title>"+ititle+"</title>");
		win.document.write("</head><body>");
		win.document.write('<div style="background-color: #cdcdcd ;position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px;font-family : verdana; font-size : 10px;">');
		win.document.write("<img src="+ifile+"><br>");
		win.document.write("</body></html>");
		win.document.close();
		}

function printNews(newsID){
window.open('/popups/print_news_popup.aspx?newsID='+newsID+'','5','menubar=no,scrollbars=1,status=no,resizable=no,width=675,height=300');
}

function printPage(pageID){
window.open('/popups/print_page_popup.aspx?pageID='+pageID+'','5','menubar=no,scrollbars=1,status=no,resizable=no,width=675,height=300');
}

function winFocus() {
this.focus();
}
function openPopupLink(openPath, width, height){
window.open(''+openPath+'','5','menubar=no,scrollbars=1,status=no,resizable=no,width='+width+',height='+height+'');
}

function openImage(imageName){
window.open('/popups/show_image.aspx?imageName='+imageName+'','6','menubar=no,scrollbars=0,status=no,resizable=no,width=350,height=300');
}

function openNoticeBoard(){
window.open('/stadsdelar/login/noticeboard/topics.aspx','NoticeBoard','menubar=no,scrollbars=1,status=no,resizable=no,width=410,height=400');
}
