//** Para-DI Script Library


// Buy iGTR script to pop up a windows to select OK(to proceed for Singapore customer) or cancel
function iGTR_confirm()
{
var iGTR=confirm("This item currently applicable to Singapore residents only");
if (iGTR==true)
  {
  window.open("http://www.paradi.com/iGTR/iGTR.html");
  }
else
  {
  window.close();
  }
}

// Buy iGTR Chinese version
function iGTR_confirm_c()
{
var iGTR_c=confirm("目前这项目只供应新加坡客户");
if (iGTR_c==true)
  {
  window.open("http://www.paradi.com/iGTR/iGTR.html");
  }
else
  {
  window.close();
  }
}
// End of Buy iGTR script