var rating = {

	popupWindow: function(url, name, width, height)
	{
		settings = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
		if(width)
		{
			settings = settings+",width="+width;
		}
		if(height)
		{
			settings = settings+",height="+height;
		}
		window.open(url, name, settings);
	},

	deleteRating: function(tid,rid,confirmmessage) {
		if(confirmmessage == 1) {
			Check = confirm("Es ist nur eine Bewertung vorhanden! Willst du diese wirklich löschen?");
		}
		if(confirmmessage == 2) {
			Check = confirm("Diese Bewertung wirklich löschen?");
		}
		if(Check == true) {
			window.location = "threadvote.php?action=do_delete_rating&rid="+rid+"&tid="+tid+"";
		}
	},

	whoRated: function(tid,subject) {
		rating.popupWindow("threadvote.php?action=whorated&tid="+tid+"", "whoRated", 310, 290);
	}
}