function popWin(url, w, h)
{
	var ww = w;
	var hh = h;
	origLeft = (screen.width-ww)/2;
	origTop = (screen.height-hh)/2;
	var w = window.open("",
                       "map",
                       "resizable=no,status=0,scrollbars=1,menubar=0,directories=0,width=" + w + ",height=" + h);
   if (w)
   {
		w.location=url;
		w.moveTo(origLeft,origTop);
		w.focus();
   }
}


function turnimg(imgname)
{
	var imgsrc = document[imgname].src;
	if(imgsrc.indexOf('_1') > 0)
		document[imgname].src = imgsrc.substring(0,  imgsrc.length-5) + "2.jpg";
	else
		document[imgname].src = imgsrc.substring(0,  imgsrc.length-5) + "1.jpg";
}

function delItem(type, name, url) {
	var s = "";

	if(type == "0") { // product
		s = "Are you sure you want to delete the product '" + name + "'?";
	}
	else if (type == "1") { // subcategory
		s = "The subcategory '" + name + "' with all the products under it will be deleted. Do you want to continue?";
	}
	else if (type == "2") { // category
		s = "The category '" + name + "' with all the subcategories and products under it will be deleted. Do you want to continue?";
	}
	else if (type == "4") { // event
		s = "Are you sure you want to delete the event '" + name + "'?";
	}
	if(confirm(s)) document.location.href=url;
}

