function ChkBookForm(){
if (FrmGuestBook.Name.value==""){
   alert('Please Input Your Name!');
   FrmGuestBook.Name.focus();
   return false;
  }

if (FrmGuestBook.Content.value==""){
   alert('Please Input Content!');
   FrmGuestBook.Content.focus();
   return false;
  }
 return true; 
}

function ChkOrderForm(){
if (FrmOrder.Name.value==""){
   alert('Please Input Your Name!');
   FrmOrder.Name.focus();
   return false;
  }

 return true; 
}

 function OpenProductCate()
{
    var vUrl = "../ManagerJa/AddProductCate.asp";
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

function EditProductCate(Id)
{
    var vUrl = "../ManagerJa/AddProductCate.asp?EditId="+Id;
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}
  
function OpenBaseBall()
{
    var vUrl = "../ManagerJa/AddBaseBall.asp";
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

function EditBaseBall(Id)
{
    var vUrl = "../ManagerJa/AddBaseBall.asp?EditId="+Id;
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

function OpenProduct()
{
    var vUrl = "../ManagerJa/AddProduct.asp";
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

function EditProduct(Id)
{
    var vUrl = "../ManagerJa/AddProduct.asp?EditId="+Id;
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

function EditProductBid(Id)
{
    var vUrl = "../ManagerJa/AddProductBid.asp?EditId="+Id;
    open(vUrl,"AddDoc","height=320,width=490,resizable=1,scrollbars=1,left=190,top=160");
}

  function EditDoc(Id)
  {
    var vUrl = "../ManagerJa/AddDoc.asp?EditId=" + Id;
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
  }
  
  function EditDoc2(Id)
  {
    var vUrl = "../ManagerJa/AddTax.asp?EditId=" + Id;
    open(vUrl,"AddDoc2","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
  }
  
  function OpenDoc()
  {
    var vUrl = "../ManagerJa/AddDoc.asp";
    open(vUrl,"AddDoc","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
  }

  function OpenDoc2()
  {
    var vUrl = "../ManagerJa/AddTax.asp";
    open(vUrl,"AddDoc2","height=290,width=490,resizable=1,scrollbars=1,left=190,top=160");
  }
    
  function ViewDoc(Id)
  {
    var vUrl = "../Main/ViewDoc_ja.asp?Id=" + Id;
    open(vUrl,"","height=350,width=600,resizable=1,scrollbars=1,left=100,top=100,menubar=1");
  }

 function ViewProduct(Id)
  {
    var vUrl = "../Product/ViewProduct_ja.asp?Id=" + Id;
    open(vUrl,"","height=350,width=600,resizable=1,scrollbars=1,left=100,top=100,menubar=1");
  }
  
  function ViewBid(Id)
  {
    var vUrl = "../Order/ViewAuction_ja.asp?Id=" + Id;
    open(vUrl,"","height=350,width=600,resizable=1,scrollbars=1,left=100,top=100,menubar=1");
  }
  
  function ViewBaseBall(Id)
  {
    var vUrl = "../BaseBall/ViewBaseBall_ja.asp?Id=" + Id;
    open(vUrl,"","height=350,width=600,resizable=1,scrollbars=1,left=100,top=100,menubar=1");
  }
  
 function ViewDoc2(Id)
  {
    var vUrl = "../Doc/ViewData.asp?Id=" + Id;
    open(vUrl,"","height=350,width=600,resizable=1,scrollbars=1,left=100,top=100,menubar=1");
  }


 function ChkLoginForm(){
if (FrmUser.Account.value==""){
   alert('Please Input Your Account!');
   FrmUser.Account.focus();
   return false;
  }

if (FrmUser.Password.value==""){
   alert('Please Input Your Password!');
   FrmUser.Password.focus();
   return false;
  }
 return true; 
}