﻿



 
function checktext(thetb) {
    //return onEnter(event,this.form);

    var quicktargetsstring = document.getElementById('themenametb').value
    
    //css definition...

    var fadedcss = {
        'border-style': 'none',
        'border-width': '0',
        'opacity': '0.2',
        'filter': 'alpha(opacity=20)',
        'cursor': 'default'
    }

    var notfadedcss = {
        'border-style': 'none',
        'border-width': '0',
        'opacity': '1',
        'filter': 'alpha(opacity=100)',
        'cursor': 'pointer'
    }

    if (quicktargetsstring != "") {

        $("#jobut").css(notfadedcss);
    }
    else { 
   $("#jobut").css(fadedcss); 
    }

 
}


        
        






function doalert(something) {
    alert(something)
}


