// popup adatok
var popups = new Array;
popups['popup_galeria']   = 'width=600,height=557,resizable=no,scrollbars=no,top=104,left=0';
popups['popup_320x240']   = 'width=540,height=340,resizable=no,scrollbars=no,top=104,left=0';
popups['popup_600x400']   = 'width=600,height=400,resizable=no,scrollbars=no,top=104,left=0';
popups['popup_800x600']   = 'width=800,height=600,resizable=no,scrollbars=no,top=104,left=0';
/*popups['popup_1024x768']  = 'width=1024,height=768,resizable=no,scrollbars=no,top=104,left=0';
popups['popup_1280x962']  = 'width=1280,height=962,resizable=no,scrollbars=no,top=104,left=0';
popups['popup_1600x1200'] = 'width=1600,height=1200,resizable=no,scrollbars=no,top=104,left=0';*/

if (!Array.indexOf) {
  Array.prototype.indexOf = function (obj, start) {
    for (var i = (start || 0); i < this.length; i++) {
      if (this[i] == obj) {
        return i;
      }
    }
  }
}

$(document).ready(function(){
    // popupok beállítása
    $('a.popup').each(function(){
        var classes = $(this).attr('class').split(' ');
        for (k in popups) {
            if (classes.indexOf(k) > -1) {
                var attr = popups[k];
                $(this).click(function(){
                    var w = window.open(this.href, 'mywebtv_popup', attr);
                    w.document.write('<html><head></head><body style="padding:0; margin:0;"><img src="' + this.href + '" alt="" /></body></html>');
                    w.focus();
                    return false;
                });
            }
        }
    });
});