function mysetdate()
{
  var today = new Date()
  var month = today.getMonth() + 1
  var day = today.getDate()
  var year = today.getFullYear()

  var tmpd=day;  
  var tmpm=month;
  var tmpy=year;
  // next 2 day
  tmpd=tmpd+2;
  if (tmpd>30) {tmpd=1; ++tmpm; if (tmpm>12) {tmpm=1; ++tmpy;}}

//NO
  var tmpc=0;
  if (tmpd>4) {tmpc=tmpc+1;}
  if (tmpd>11) {tmpc=tmpc+1;}
  if (tmpd>20) {tmpc=tmpc+1;}
  if (tmpd>27) {tmpc=tmpc+1;}

  // for index
  tmpd=tmpd-1-tmpc;
  tmpm=tmpm-1;
  tmpy=tmpy-2005;
  document.form1.sday.options[tmpd].selected=1;
  document.form1.smonth.options[tmpm].selected=1;  
  document.form1.syear.options[tmpy].selected=1;   
}

function mypopup(picURL,picWidth,picHeight,sel)
{
  sel=sel-1;
  document.form1.formradio1[sel].checked=true;
  document.form1.formradio1.value=sel;
  newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight+',left=30,top=60');
  newWindow.document.write('<html><head><\/head><body background="'+picURL+'"><\/body><\/html>');
  newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight);
  newWindow.focus();
}

function myshow1()
{
  alert("Free Shipping to Tehran and $7.95 extra charge for shipping to the other cities.");
}

function mygifttel()
{
  alert("We will contact your recipient before sending your gift.");
}
