// JavaScript Document
function openWin1() { 
	window.open("http://www.claypaky.it/common/web_credits.htm","finestra","toolbar=no,location=no,directories=no,status=no,menubar=no,title=no,scrollbars=no,resizable=no,copyhistory=no,width=300,height=300,top=140,left=140"); 
}
function openWinTeam(pWin) { 
	window.open(pWin,"winteam","toolbar=no,location=no,directories=no,status=no,menubar=no,title=no,scrollbars=no,resizable=no,copyhistory=no,width=600,height=411,top=140,left=140"); 
}
function openWinPress(pWin) {
	window.open('/images/image.php?f=press&i='+pWin,'press','resizable=false,width=300,height=300,top=140,left=140'); 
}

function openWinBackstage(pImg){
	backst = window.open('/backstage/win.php?i='+pImg, 'backstage', 'width=500,height=500');
	backst.focus();
}

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		if(obj){
			if (obj.style.display == "none"){
				obj.style.display = "";
			} else {
				obj.style.display = "none";
			}
		}
	}
}

function show(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		if(obj){
			if (obj.style.display == "none"){
				obj.style.display = "";
			}
		}
	}
}

function winGobosFilters(pProduct, pLanguage){
	window.open('/accessories/win_accessories.php?accessories=standard&projector='+pProduct+'&language='+pLanguage,'gobosFilters','resizable=0,width=670,height=500'); 
}