var xmlhttp=null;

function showFormat()
{
		
		var countryid=document.getElementById('countryid').value;
		
		var xmlhttp;
		if (window.XMLHttpRequest)
		  {
		  // code for IE7+, Firefox, Chrome, Opera, Safari
		  xmlhttp=new XMLHttpRequest();
		  }
		else if (window.ActiveXObject)
		  {
		  // code for IE6, IE5
		  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		else
		  {
		  	alert("Your browser does not support XMLHTTP!");
		  }
		  
		  
		xmlhttp.onreadystatechange=function()
		{
		if(xmlhttp.readyState==4)
		  {
		  document.getElementById('code').value=xmlhttp.responseText;
		  }
		}
		
		
		$url='createFormat.php?countryid='+countryid;
		
		
		xmlhttp.open("GET",$url,true);
		xmlhttp.send(null);



}






















function DeleteSize(FormatID,country_id) 
{
	
		if(confirm("Delete Format ?")) 
		{
			document.location = "country_format_add.php?action=del&format_id=" + FormatID+"&country_id="+country_id;
		}
	
}
