/**
 * @author jayjagpal
 */

 function initMainPage()
 {
 	$('beautiful_hosting').innerHTML = "";
	$('killer_hosting').innerHTML = "";
 }

 
 function callDate()
 {
 	

	var url = '/services/date/index.php?date=' + $('txtDateField').text;
	// notice the use of a proxy to circumvent the Same Origin Policy.
	
	new Ajax.Request(url, {
	  method: 'get',
	  onSuccess: function(transport) {
	    var notice = $('notice');
	   	    var notice = $('dateReturn');
		    notice.innerHTML = transport.responseText 
	  }
	});

 }

