google_ad_client = "pub-0557047985484196";
google_ad_width  = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_color_border = "333333";
google_color_bg = "FFFFFF";
google_color_link = "333333";
google_color_url = "CC0000";
google_color_text = "000000";

function beSure() {
  return confirm("Вы уверены?");
}

function showElement(id) {
  f = document.getElementById(id);
  v = f.style.visibility;
  f.style.visibility = "visible";
}

function hideElement(id) {
  f = document.getElementById(id);
  v = f.style.visibility;
  f.style.visibility = "hidden";
}

function showForm() {
  f = document.getElementById("add_product");
  v = f.style.visibility;
  f.style.visibility = (v == "visible") ? "hidden" : "visible";
}

function showCatalog() {
  f = document.getElementById("add_catalog");
  v = f.style.visibility;
  f.style.visibility = (v == "visible") ? "hidden" : "visible";
}

function openWindow(url,nam,sw,sh) {
  if (nam == "") nam = "photo";
  if (sw == 0) sw = 580;
  if (sh == 0) sh = 500;
  window.open (url,nam,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+sw+',height='+sh+'');
  return false;
}

function resize() {
   var photo = document.getElementById('photo');
   var w = photo.width  + 50;  if (w < 580) w = 580;
   var h = photo.height + 150; if (h < 500) h = 500;
   self.resizeTo(w,h);
   self.focus();
}

