/** Scripts der åbner TellAFriend siden **/
function PhotoShow(url) {
    if (typeof(url)=='undefined') url = 'http://www.oddercykelklub.net/photo_show.php';
    var w=680; var h=680;
    var l=Math.floor(window.screen.width/2 - w/2);
    var t=Math.floor(window.screen.height/2 - h/2);
    var param = 'height='+h+', width='+w+', top='+t+', left='+l+', location=no, menubar=no, resizable=no, titlebar=yes, toolbar=no, status=no, directories=no, channelmode=no, scrollbars=no';
    window.open(url, 'PhotoShow', param).focus();
}
