function shop_ImagePopup(id,type)
{
	var fs=window.open('/index.php/fuseaction/shop.image/type/'+type+'/imageid/'+id,'image','directories=no,height=501,width=640,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
	fs.focus();
}

function shop_ConfAct(location,message)
{
	var answer = confirm (message)
	if (answer)
		window.location=location;
}

function shop_FormConfAct(messageid,verb,noun,actor)
{
	if(messageid==1)
		var message="Are you sure you want to "+verb+" this "+noun+" "+actor+"?";
	else if(messageid==2)
		var message="Are you sure you want to "+verb+" your "+noun;

	return confirm (message)
}