window.onerror=droperror;
function droperror(){}
document.domain = "madeinchina.com";

if(document.cookie != null && document.cookie.indexOf("_myList_") == -1)
{
	document.cookie = "_myList_=0;path=/;domain=.madeinchina.com"
	document.cookie = "myList_1=;path=/;domain=.madeinchina.com"
	document.cookie = "myList_2=;path=/;domain=.madeinchina.com"
	document.cookie = "myList_3=;path=/;domain=.madeinchina.com"
	document.cookie = "myList_4=;path=/;domain=.madeinchina.com"
}

function openwindow( url, winName, width, height) 
{
xposition=0; yposition=0;
if ((parseInt(navigator.appVersion) >= 4 ))
{
xposition = (screen.width - width) / 2;
yposition = (screen.height - height) / 2;
}
theproperty= "width=" + width + "," 
+ "height=" + height + "," 
+ "location=0," 
+ "menubar=0,"
+ "resizable=1,"
+ "scrollbars=0,"
+ "status=0," 
+ "titlebar=0,"
+ "toolbar=0,"
+ "hotkeys=0,"
+ "screenx=" + xposition + "," //仅适用于Netscape
+ "screeny=" + yposition + "," //仅适用于Netscape
+ "left=" + xposition + "," //IE
+ "top=" + yposition; //IE 
window.open( url,winName,theproperty );
}


//普通SHOWROOM页
function addContactnowCompany(companyId)
{
    var controlWindow=window.open("http://my.madeinchina.com/b2b/showroom,ContactNow.shtml?com_box="+companyId,"contactNowCompanyWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=300");
}

//产品详细页
function addContactnowProduct()
{
	var productId = document.getElementById('pro_box').value;
    var controlWindow=window.open("http://my.madeinchina.com/b2b/showroom,ContactNow.shtml?pro_box="+productId,"contactNowCompanyWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=300");
}
//sellinglead 详细页
function addContactnowSellinglead(){
	var selId = document.getElementById("sel_box").value;
	var controlWindow=window.open("http://my.madeinchina.com/b2b/showroom,ContactNow.shtml?sel_box="+selId,"contactNowCompanyWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=300");
}
//产品列表页
function addContactnowProductList()
{
	var productIdArray = document.getElementsByName('pro_box');
	var selectproductcount = 0;
	if(productIdArray != null)
	{
		for( i=0;i<productIdArray.length;i++)
		{
			if( productIdArray[i].checked == true )
			{
				selectproductcount++;
			}
		}
	}

		if( selectproductcount >=1 && selectproductcount < 11 )
		{
			document.myListForm.action="http://my.madeinchina.com/b2b/showroom,ContactNow.shtml";
			document.myListForm.target="_blank";
			document.myListForm.submit();
		}
		else if( selectproductcount >= 11 )
		{
			alert("no selected items or count should between 1 and 10 ");
		}
		else
		{
			var companyId  = document.getElementById('com_box').value;
			var controlWindow=window.open("http://my.madeinchina.com/b2b/showroom,ContactNow.shtml?com_box="+companyId,"contactNowCompanyWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=300");
		}

}
//Sellinglead 列表页
function addContactnowSellingLeadsList()
{	
	//alert("addContactnowSellingLeadsList");
	var productIdArray = document.getElementsByName('sel_box');
	var selectproductcount = 0;
	if(productIdArray != null)
	{
		for( i=0;i<productIdArray.length;i++)
		{
			if( productIdArray[i].checked == true )
			{
				selectproductcount++;
			}
		}
	}

		if( selectproductcount >=1 && selectproductcount < 11 )
		{
			document.myListForm.action="http://my.madeinchina.com/b2b/showroom,ContactNow.shtml";
			document.myListForm.target="_blank";
			document.myListForm.submit();
		}
		else if( selectproductcount >= 11 )
		{
			alert("no selected items or count should between 1 and 12 ");
		}
		else
		{
			var companyId  = document.getElementById('com_box').value;
			var controlWindow=window.open("http://my.madeinchina.com/b2b/showroom,ContactNow.shtml?com_box="+companyId,"contactNowCompanyWin","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=450,height=300");
		}

}


function checkUserIsLogin()
{
	key='_user_madeinchina_name';
  	start=cookie1.indexOf(key+"=");
  	if(start != -1)
  	{
		document.getElementById("addressBook").style.display="";
	}
}



//添加到地址簿
function addtoAddressBook()
{
	//alert(document.getElementById('com_box').value);
	key='_user_madeinchina_name';
  	start=cookie1.indexOf(key+"=");
  	if(start == -1)
  	{
		alert("Please sign in to use this function!");
		return;
	}
	var companyId = document.getElementById('com_box').value;
    openwindow("http://my.madeinchina.com/b2b/showroom,AddtoAddressBook.shtml?com_box="+companyId, 'AddtoAddressBook', 420, 160 );
}



