// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function OpenWindow(theURL, nome, w, h, l, t) {
	
	
	if (isNaN(w)){
		w = 100;
	}
	if (isNaN(h)){
		h = 100;
	}
	
	if (isNaN(l)){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	} else {
		LeftPosition = l;
	}
	if (isNaN(t)){
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	} else {
		TopPosition = t;
	}
	
	window.open(theURL,nome,'status=no,scrollbars=false,resizable=no,width='+w+',height='+h+',left='+LeftPosition+',top='+TopPosition);
}
// JavaScript Document
Shadowbox.init({
	language:   "it",
	players:    ["qt","swf","flv","qt","wmp", "img", "iframe", "html"]
});
