// JavaScript Document - WWW.DBSINERGY.TK

<!--
function openwindow(dir,wt,ht,res,scrol)
{
	if (wt==0)
	wt=526
	if (wt=='')
	wt=526
	if (ht==468)
	ht=468
	if (ht=='')
	ht=468
	if (ht=='')
	ht=no
	if (scrol=='')
	scrol=yes
	
	window.open(dir, 'expressboxwin', 'toolbar=no,directories=no,scrollbars='+scrol+',status=no,resizable='+res+',width='+wt+',height='+ht+',top=100,left=100');
}
//-->

<!--
var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// --> 

var crs = document.cursors
crs="images/freccia_crs.cur"

<!--Inizio Codice Sfumatura -->
function swich(me,he,sfm){
highlighting=setInterval("highlightit(me)",50)
low(he,sfm)
}


function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}

function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=20
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}

<!--Fine Codice Sfumatura -->

/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}