function flash(src,w,h,string_values) {
    if(string_values==undefined)
        document.write('<object type="application/x-shockwave-flash" data="'+src+'" width="'+w+'" height="'+h+'" wmode="transparent"><param name="movie" value="'+src+'" /><param name="wmode" value="transparent" /></object>');
    else
        document.write('<object type="application/x-shockwave-flash" data="'+src+'" width="'+w+'" height="'+h+'" wmode="transparent"><param name="movie" value="'+src+'" /><param name="wmode" value="transparent" /><param name="FlashVars" value="'+string_values+'" /></object>');
}

$(document).ready(function() {
   
   $('.external').click(function() { window.open(this); return false; });
   
   $('body').pngFix();

   $(".lightbox").lightBox({imageLoading:$dir_img+"/lightbox-ico-loading.gif"});
});