
var strEstimateRoot = CybermallWebRootDir + "/Support/Buy/Estimate/";

function MoveToEstimate(Type, GMODELCODE, CARSORT, OPCODE, CARCODE, MODELCODE)
{

 var strQueryString = "CarSort=" + CARSORT + "&GModelCode=" + GMODELCODE + "&ModelCode=" + MODELCODE
      + "&OpCode=" + OPCODE + "&CarCode=" + CARCODE;

// document.location.href = strEstimateRoot + "Detail.aspx?" + strQueryString;

/*·Î±×ÀÎ ¿©ºÎ °Ë»ç
 if(getCookie(SiteCookieName) != "")
 {
  switch(Type)
 {  
   case "A": //»ó¼¼ °ßÀû
    document.location.href = strEstimateRoot + "Detail.aspx?" + strQueryString;
   break;
   case "T": //ÅÃ½Ã °ßÀû
    document.location.href = strEstimateRoot + "Taxi.aspx?" + strQueryString;
   break;
   case "C": //Àå¾Ö¿ì °ßÀû 
    document.location.href = strEstimateRoot + "Hfriend.aspx?" + strQueryString;
   break;  
   default: //°£´Ü °ßÀû °Ô½ºÆ® °ßÀû
    document.location.href = strEstimateRoot + "Estimate.aspx?" + strQueryString;
   break;
  } 
 }
 else */
 {
  //°Ô½ºÆ® °ßÀû
  document.location.href = strEstimateRoot + "Detail.aspx?" + strQueryString;
 }
}