

/*
var timeout = 250;

var uA = navigator.userAgent;
var safariPos=uA.indexOf('Safari');
var safariVersion=parseFloat(uA.substr(safariPos+7));
var shouldClose=0;
if (safariVersion > 120 && window.history.length < 2) {
    shouldClose=1;
}
*/

function share(entry) {
	var url = document.URL;
	url = "dvdpedia://bruji.com/share?" + url;
	
	url = url.substring(0, url.lastIndexOf("/"));
	
	//If entry is defined share a specific entry otherwise the entire list
	if (entry) {
			url = url + "/sharing/" + entry + ".xml";
	}
	else 
		url = url + "/sharing/list.rss";
	
	//alert(navigator.mimeTypes["application/dvdpedia"]);
	
	// Close
	/*if (shouldClose == 1) {
		setTimeout('window.close()', timeout);
	} else {
		setTimeout('window.history.back()', timeout);
	}
	*/
		
	window.location = url;
	
	//alert(url);
}
