
function refreshImages(){
var search="?"+(new Date()).getTime();
for(var i=0;i<document.images.length;document.images[i++].src+=search);
}

var sWidth = screen.width;
sWidth=(sWidth/2)-350;
function winPopUp(filename) {
msgWindows=window.open(filename, "","top=150,left=" + sWidth + ",resizable=yes,scrollbars=no,width=350,height=420");
}
/*använd vid utskrift fönster
function winPopUpprint(filename) {
msgWindows=window.open(filename, "","top=150,left=" + sWidth + ",resizable=yes,scrollbars=yes,width=700,height=600");
            }
*/
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

