// JavaScript Document

function popup(myUrl,myName,mywidth,myheight)
{
  var winl = (screen.width - mywidth) / 2;
  var wint = (screen.height - myheight) / 2;
  var n=open(myUrl,myName,'toolbar=no,location=no,directories=no,status=no,menubar=no,titlebar=no,scrollbars=no,resizable=no,width='+mywidth+',height='+myheight+',left='+winl+',top='+wint+'');
  n.focus();
}

function utilsBar()
{
	var globalUrl = document.URL;
	
	var paths = globalUrl.split('/');
	
	var backPath = "";
	
	if (paths[paths.length-2] != "en" && paths[paths.length-2] != "it")
	{
		backPath += "../";	
	}
	
	document.writeln("<div id='utilsBar'>");
	document.writeln("<a href=\"javascript:popup('"+backPath+"PUJukebox.html','PUJukebox',460,430)\"><img src='"+backPath+"../pics/interface/jukebox_ico.gif' class='ico' /></a>");
	document.writeln("</div>");
}
