/* Open new Windows */
function popup(URLStr,width, height)
{
  var popUpWin=0;
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;

  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
//refresh ˹ҷҹ ǻԴ˹ popup
function RELOAD(xtime)
{
   window.opener.location.reload();
   setTimeout("self.close()",xtime);
}

/* function close windows auto */
function AUTO_CLOSE(xtime)
{
   setTimeout("self.close()",xtime);
}
function Toggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   key=document.getElementById("x" + item);
   if (visible) {
     obj.style.display="none";
   // key.innerHTML="<img src='images/down_arow_blue.gif' width='12' height='12' hspace='0' vspace='0' border='0' align='absmiddle'>";
   } else {
      obj.style.display="block";
      //key.innerHTML="<img src='images/top_arow_blue.gif' width='12' height='12' hspace='0' vspace='0' border='0' align='absmiddle'>";
   }
}

function showhide (id)
{
var style = document.getElementById(id).style
if (style.visibility == "hidden")
style.visibility = "visible";
else
style.visibility = "hidden";
}

function ck_shipping(){
if(document.frm_ck_shipping.ck_address_shipping.checked =="")
{
	alert("กรุณาทำเครื่องหมายยืนยันการจัดส่งตามที่อยู่ปจจุบัน");
	document.frm_ck_shipping.ck_address_shipping.focus();
	return false;
}
return true;
}

