function popWindow(url){
    window.open(url,'name','height=310,width=370');
}

function popWhat(url){
	
    window.open(url,'name','height=200,width=340');
}


function popBigWindow(url){
    window.open(url,'name');
}
	
	
// for enforcing single-click entries -->
function DisableButton() {
    document.forms[0].submit();
    window.setTimeout("disableButton('" + 
       window.event.srcElement.id + "')", 0);
}

function disableButton(buttonID) {
    //document.getElementById(buttonID).disabled=true;
    $('#' + buttonID).val('Please Wait...').attr('disabled', 'disable')
}

