$(document).ready(function() {	if(typeof uuid != "undefined") {	    var serviceUrl="/php/piuletti/artratingsvc.php";	    var title = escape(document.title);	    var DocRulesView = 'Libero';	    var url = escape(document.URL);		if(document.URL.indexOf("/Audio/") > -1) doctype = "audio";		if(typeof(doctype) == "undefined") doctype = "video";	    var dataUrl = "uuid=" + uuid;	    dataUrl += "&title=" + title;	    dataUrl += "&DocRulesView=" + DocRulesView;	    dataUrl += "&type=" + doctype;				dataUrl += "&channel=MediaCenter";	    dataUrl += "&url=".concat(url);		if(uuid.length > 0 && title.length > 0) {			$.ajax({			   type: "GET",			   url: serviceUrl,			   data:dataUrl,			   success: function(msg){				$(document.body).append(msg);			   }			 });		}	}});
