/* Author: David Mimms (dmimms avantinformatica.it)
 * Desc: 
 * Date: Oct 2006
 */

function elenco () {
	window.open('/artists/elenco.htm','_blank','width=420,height=573');
}

function livepopup (url) {
	var w = 1024, h = 768;

	if (document.all || document.layers) {
		w = screen.width;
		h = screen.height;
	}
	
	var popW = 610, popH = 510;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	window.open(url, 'gallery', 'width='+popW+',height='+popH+',left='+leftPos+',top='+topPos+',toolbar=No,location=No,scrollbars=No,status=No,resizable=Yes,fullscreen=No');
}

function popup (url) {
	window.open(url, 'gallery', 'width=100,height=300,toolbar=No,location=No,scrollbars=No,status=No,resizable=Yes,fullscreen=No');
}