// send sms

function job_alerts() {
 
   var params = '';
 
   try {
     var req = new Ajax.Request('http://www.internationaljobsolutions.com/cgi-bin/job_alerts.cgi',{
			onSuccess : function(r) { show(r) },
			method : "post",
			parameters : params
	       	});
      	} 
		catch(e) {
		   return false;

        }

}

function show(r) {

   var res = r.responseText;

   document.getElementById('job_alerts').innerHTML = '<strong>' + res + '</strong>';
}

job_alerts();