﻿
$(function() {
    //
    $("a.winpopup").click(function(event) {
        var mywindow = window.open($(this).attr('href'), 'Appnova', 'location=0,status=1,scrollbars=1,width=800,height=600');
        
        event.preventDefault();
    });
    //For the search box
    $(".enter").keypress(function(e) {
        if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
            __doPostBack($(this).next().attr('id').replace("_", "$"), '')
        }
    });
    //For IE6 pngs
    $('body').supersleight();

});