function show_data()
{
  location.href = 'addmeta.php?cat_id='+document.form1.category.value;
}
function deletea(str)
{
  if(confirm("Are you sure want to Remove?"))
  {
    location.href=str;
  }
}


function popup(str)
{
   var arguments = 'resizable=yes,toolbar=no,location=no,directories=no,addressbar=no,scrollbars=yes,status=no,menubar=no,width=720,height=650,top=10,left=250';
   window.open(str, "_blank", arguments);
}


function show_image()
{
 document.getElementById('pic').style.visibility = 'visible';
 document.all.show.src =  document.all.photo.value;
}



//....................................................................
function change_color(tr)
{
  if(document.all)
  {
     document.getElementById(tr).style.backgroundColor = '#CFC5BC';  
  }
}

//..................
function change_color1(tr)
{
  var no ;
  no = tr.substr(2,tr.length);
   if(document.all)
  {
    if( no%2 == 0)
	 document.getElementById(tr).style.backgroundColor = '#4D5B6E';  
    else
	document.getElementById(tr).style.backgroundColor = '#9896AD';  
  }
}

 function more_photo()
 {
   var id;
   id = this.document.all.cate.value;
   location.href = 'manage.php?cat='+id;
 
 }
