function imageZoom( img_name, wwidth, wheight )
{
	winurl  = "index.php?a=show_image&img_name="+img_name;
	winname	= "oscshopimagezoom";
	width   = wwidth;
	height	= wheight;

	test = window.open(winurl,winname,"top=50,left=50,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width="+width+",height="+height+",channelmode=0,dependent=0,fullscreen=0");
}

function confirm_delete()
{
	check = confirm("Wirklich loeschen ??");
	return check;
}

function expandit(curobj)
{
	extInfo   = curobj;
	
	if(document.getElementById(extInfo))
	{
		extInfo_folder=document.getElementById(extInfo).style;
	}

	if (extInfo_folder.display=="none")
	{
		extInfo_folder.display="";

	}
	else
	{
		extInfo_folder.display="none";
	}
}
