
//Öppnar nytt fönster centrerat
function NewWindow(mypage,myname,w,h,scroll){
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 if(!w) w = 600;
 if(!h) h = 500;
 if(!scroll) scroll = 2;
 var settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable,status=1'
 if (scroll == 2) {
 scroll = 0
 settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=false,status=1'
 }
 win = window.open(mypage,myname,settings)
 return false;
}

function prevent_spam(a, b, c) {
    document.write('<a href="mailto:');
    document.write(b);
    document.write('@');
    document.write(c);
    document.write('.');
    document.write(a);
    document.write('">');
    document.write(b);
    document.write('@');
    document.write(c);
    document.write('.');
    document.write(a);
    document.write('</a>');
}
