     
function resetall()
{
  document.forms[0].txtfname.value=" ";
  document.forms[0].txtlname.value=" ";
  document.forms[0].txtemail.value=" ";
  document.forms[0].txtcomments.value=" ";
  document.forms[0].txtphone.value=" ";
  document.forms[0].ddlQuantity.value="0";
  document.forms[0].ddlSize.value="0";
  document.forms[0].ddlColor.value="0";
  return false;
}

function Newwindow3(picArray)
{
  window.open(picArray,"ProductDetail","target=_blank,scrollbars=no,height=520,width=520,top=100,left=100");
  // window.open(picArray,"ProductDetail","target=_blank,scrollbars=no,height=520,width=520,top=100,left=100");
  /*alert('hi');
   theURL="EnLargeImage.aspx?url="+picArray; 
   winName="EnLarge Image";
   features="width=480,height=510";
   window.open(theURL,winName,features);*/
}

function Newwindow2(mainid,editid,productid)
{
  var ProductName=''
    var url='';
  if(document.getElementById("spnProductName"))
    {
      ProductName = document.getElementById("spnProductName").innerHTML;
    }	
  url	= "Email.aspx?MainID=" + mainid + "&EditID=" + editid + "&ProductID=" + productid + "&PName=" + ProductName;
  window.open(url,"MailForm","target=_blank,scrollbars=no,height=560,width=420,top=100,left=500");
  
}


