//function ow(theURL,winName,w,h,t) {
//  var x=window.open('about:blank',winName,'scrollbars=no,resizable=yes,width='+w+',height='+h+',left=90,top=90,address=no,status=no');
//  x.document.write('<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
//  x.document.write('<title>'+t+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
//  x.document.write('<a href="#" onClick="self.close();"><img src="'+theURL+'" width="'+w+'" height="'+h+'" border="0">');
//  x.document.write('</a></body></html>');
//}

function change_layer(id, action) {
  if(!id || !action)
    return false;
  objLayer=window.document.getElementById(id);
  if(action == "show")
    objLayer.style.display="block";
  else
    objLayer.style.display="none";
}

function change_visibility(id, action) {
  if(!id || !action)
    return false;
  objLayer=window.document.getElementById(id);
  if(action == "show")
    objLayer.style.visibility="visible";
  else
    objLayer.style.visibility="collapse";
}
