function reload()
 {
  var targ="parent";
  //var value=variable.options[variable.selectedIndex].value
  var value2=document.getElementById('category').value
  eval(targ+".location='../products.php?cat_id="+value2+"'");
 }
 
function reload2(variable)
 {
  var targ="parent";
  var value=variable.options[variable.selectedIndex].value
  var value2=document.getElementById('editid').value
  eval(targ+".location='admin_form_results.php?user_id="+value+"&item_id="+value2+"'");
 }



function myPopup2() {
window.open( "http://www.google.com/", "myWindow", 
"status = 1, height = 300, width = 300, resizable = 0" )
}

function popupWindow(pr_id) 
{
	//var myname = 'Enlarged Photo';
	var mypage = 'product_photo.php?pr_id='+pr_id;
	var w = '450';
	var h = '450';
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=1'
	win = window.open(mypage, "", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}