﻿	 
	function Country_Ajax(odiv,para,country_Id)
	{
	var xhrObj=null;
	if(window.XMLHttpRequest)
	{
		xhrObj=new XMLHttpRequest();
	}
	else if(window.ActiveXObject)
	{
		try{
		xhrObj=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(e1)
		{
			try{
			xhrObj=new ActiveXObject("MSXML2.XMLHTTP");
			}
			catch(e2){
				try{
				xhrObj=new ActiveXObject("MSXML3.XMLHTTP");
				}
				catch(e3){
				alert("Ajax failed to create:"+e3)
				}
			}
		}
	}
	else
	{
		alert("Failed to identify the browser");
	}
	var ship_div = eval(odiv);
	
	xhrObj.open("GET","/ship_Market/ship_info.asp?id="+String(para)+"&country_Id="+country_Id+"&fresh="+Math.random(), true); 
	xhrObj.onreadystatechange = function()
	{ 
	　 if (xhrObj.readyState == 4) 
	   { 
		　 	if (xhrObj.status == 200)
				{ 
					if(xhrObj.responseText != "")
					{
						var sOption = new Array(); 
						ship_div.innerHTML = xhrObj.responseText;
						
					}
					else
					{
						ship_div.innerHTML = "";
					}
				}
		 }
     }
	
	xhrObj.send(null); 	 

 }
 function newspic(type,divID,countryID)
{
	var divpic=document.getElementById(divID);
	if(Number(type) == 1)
	{
		 divpic.innerHTML=" <div align='center'><img src='/newimages/index_07.gif' border='0'></div>";
	}
	if(Number(type) == 2)
	{
		divpic.innerHTML="<div class='pic'><img src='/newimages/sikao.bmp' border='0' height='400' width='192'></div>";
	}
	if(Number(type) == 3)
	{
		divpic.innerHTML="<a href='http://www.ibgintl.com/'><img src='/img/company/ibg.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='www.telewonder.com/EN/ipod.htm'><img src='/img/company/kelley.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://cgi.ebay.com.hk/'><img src='/img/company/ebay.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href=' www.glinet.org/'><img src='/img/company/walk.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://www.portscenter.com/service/contactus.asp'><img src='/img/company/pent.gif' border='0' height='60' width='100'></a>";
	}
}
function entads(type,divId,countryID)
{
	var entdivID=document.getElementById(divId);
	if(Number(type) == 1)
	{
		 entdivID.innerHTML="<a href='http://www.ibgintl.com/'><img src='/img/company/ibg.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='www.telewonder.com/EN/ipod.htm'><img src='/img/company/kelley.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://cgi.ebay.com.hk/'><img src='/img/company/ebay.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href=' www.glinet.org/'><img src='/img/company/walk.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://www.portscenter.com/service/contactus.asp'><img src='/img/company/pent.gif' border='0' height='60' width='100'></a>";
	}
	if(Number(type) == 2)
	{
		 entdivID.innerHTML="<a href='http://www.ibgintl.com/'><img src='/img/company/ibg.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='www.telewonder.com/EN/ipod.htm'><img src='/img/company/kelley.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://cgi.ebay.com.hk/'><img src='/img/company/ebay.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href=' www.glinet.org/'><img src='/img/company/walk.gif' border='0' height='60' width='100'></a>&nbsp;&nbsp;&nbsp;<a href='http://www.portscenter.com/service/contactus.asp'><img src='/img/company/pent.gif' border='0' height='60' width='100'></a>";
	}
}