/*********************
 * L24_openWindow functions
 *@copyright Lottery24
 *@author Tiplady
 *@created 2005-06-16
 */

function L24_openWindow(obj, height, width)
{
    var link = obj.href;
    if ( !height )
        height = 480;
    if ( !width )
        width = 560;

    var xpos = (screen.width - width) / 2;
    var ypos = (screen.height - height) / 2;

    if ( link.indexOf('.jpg') == -1 )
        link += '/noFrame/true';

    L24_popup = window.open(link, 'Lottery24', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left='+xpos+',top='+ypos+',screenX='+xpos+',screenY='+ypos);
    L24_popup.focus();
    return false;
}
