// JavaScript Document
$(document).ready(function() {
	 var optionsShout = { 
        target:        '#quickUrlDiv',   
        beforeSubmit:  showUrlShoutRequest,  
        success:       showUrlShoutResponse
    }; 
    $('#frmAddUrls').ajaxForm(optionsShout);
});

function showUrlShoutRequest() {
	if(document.getElementById('txtUrls').value==''){
		document.getElementById('hintURL').style.display='block';
		document.getElementById('hintURL').innerHTML="Url missing<br />";
		return false;
	}		
	document.getElementById('quickUrlDiv').innerHTML='working..';
} 


function showUrlShoutResponse(responseText, statusText){	
	document.getElementById('hintURL').innerHTML='';
}  










