﻿//function kH(e) {
//    var pK = e ? e.which : window.event.keyCode;
//    //alert(pK);
//    return pK != 13;
//}
//document.onkeypress = kH;
//if (document.layers) document.captureEvents(Event.KEYPRESS);

function fireEvent(obj) {
    if (obj.onclick)
        obj.onclick();
    else if (obj.href.indexOf("javascript", 0) != -1)
        window.setTimeout(obj.href, 10);
    else if (obj.href)
        docum.location = obj.href;


}
