//<!---------------------------------+
//  Visit http://roshanbh.com.np for this script and more.
// --------------------------------->
$(document).ready(function()
{
	$("#phonenumber").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox").removeClass().addClass('messagebox').text('Verificando numero...').fadeIn("slow");
		//check the celular phone number from ajax
		$.post("includes/scripts/checkcelphone.php",{ phonenumber:$(this).val() } ,function(data)
        {
		  if(data=='1') // if username not available
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('<a href="http://www2.tigo.com.gt/templates/pop_msn.html" onclick="NewWindow(this.href,\'mywin\',\'328\',\'482\',\'no\',\'center\');return false" onfocus="this.blur()"><img src="images/icons/tigo.gif" border="0" alt="Envia mensajes a telefonos Tigo" title="Envia mensajes a telefonos Tigo" /></a>').addClass('messageboxsOK').fadeTo(900,1);
			});		
          }
		  if(data=='2') {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('<a href="http://mensajes.claro.com.gt/mensaje_claro.php" onclick="NewWindow(this.href,\'mywin\',\'240\',\'350\',\'no\',\'center\');return false" onfocus="this.blur()"><img src="images/icons/claro.gif" border="0" alt="Envia mensajes a telefonos Claro" title="Envia mensajes a telefonos Claro" /></a>').addClass('messageboxOK').fadeTo(900,1);	
			});
		  }
		  if(data=='3') {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('<a href="http://www.corporativo.telefonica.com.gt/EnviarSMSGT" onclick="NewWindow(this.href,\'mywin\',\'600\',\'400\',\'no\',\'center\');return false" onfocus="this.blur()"><img src="images/icons/movistar.gif" border="0" alt="Envia mensajes a telefonos Movistar" title="Envia mensajes a telefonos Movistar" /></a>').addClass('messageboxOK').fadeTo(900,1);	
			});
		  }

		if(data=='0') {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('<img src="images/icons/invalido.gif" border="0" alt="No Valido" title="No Valido" />').addClass('messageboxE').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});
