//=================================================================
// logout
//=================================================================
function lo()
{
  top.location.href="logout.aspx";
}

//=================================================================
// checkout
//=================================================================
function co()
{
  top.location.href="cart.aspx";
 // top.location.href="default.aspx";
}

//=================================================================
// ciper
//=================================================================
function cip()
{
  top.location.href="Ciper_2.aspx";
}

//=================================================================
// register
//=================================================================
function reg()
{
  top.location.href="register.aspx";
}

//=================================================================
// book detail
//=================================================================
function bk(num)
{
  top.location.href= "bookdetail.aspx?bokno=" + num;
}

//=================================================================
// remove wishcart book
//=================================================================
function w2s(num)
{
  location.href= "w2s.aspx?bokno=" + num;
}

//=================================================================
// remove wishcart book
//=================================================================
function rwb(num)
{
  location.href= "rwb.aspx?bokno=" + num;
}

//=================================================================
// remove shpcart book
//=================================================================
function rsb(num)
{
  location.href= "rsb.aspx?bokno=" + num;
}

//=================================================================
// show shop cart
//=================================================================
function ShowShpCart()
{
  window.resizeTo(screen.width-21,154);
  document.getElementById("ShopBar").style.display = "none";
  document.getElementById("ShopList").style.display = "";
  document.getElementById("WishList").style.display = "none";
}

//=================================================================
// show wish cart
//=================================================================
function ShowWishCart()
{
  window.resizeTo(screen.width-21,154);
  document.getElementById("ShopBar").style.display = "none";
  document.getElementById("ShopList").style.display = "none";
  document.getElementById("WishList").style.display = "";
}

//=================================================================
// close all cart
//=================================================================
function CloseShpCart()
{
  window.resizeTo(screen.width-21,31);
  document.getElementById("ShopBar").style.display = "";
  document.getElementById("ShopList").style.display = "none";
  document.getElementById("WishList").style.display = "none";
}



