﻿function DuiBi(HidProId)
{   
	Ajax.Get("Control/DuiBi.ashx?ProId="+HidProId+"",RetDuiBi);	
}
function RetDuiBi(ret)
{
   if (ret=="1")
	{
		window.open("Compare.html?rnd="+10000*Math.random()+"","对比","");
	}
	else
	alert(""+ret+"");
	return false;
}
function DelDuiBi(ProId)
{   
	Ajax.Get("Control/DelDuiBi.ashx?Id="+ProId+"",RetDelDuiBi);	
}
function RetDelDuiBi(ret)
{
   if (ret=="1")
	{
		top.location.href="Compare.html?rnd="+10000*Math.random();
	}
//	else
//	alert(""+ret+"");
//    top.location.href="Compare.html?rnd="+10000*Math.random();
}
