var NCSSliderControl = 0;
var NCSSliderPass = 10;
var NCSSliderPassBuffer = 10;

function getRefToDivNest( divID, oDoc ) {
	//get a reference to the slider control, even through nested layers
	if( !oDoc ) { oDoc = document; }
	if( document.layers ) {
		if( oDoc.layers[divID] ) { return oDoc.layers[divID]; } else {
			for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {
				y = getRefToDivNest(divID,oDoc.layers[x].document); }
			return y; } }
	if( document.getElementById ) { return document.getElementById(divID); }
	if( document.all ) { return document.all[divID]; }
	return document[divID];
}

function sliderMousePos(e) {
	//get the position of the mouse
	if( !e ) { e = window.event; } if( !e || ( typeof( e.pageX ) != 'number' && typeof( e.clientX ) != 'number' ) ) { return [0,0]; }
	if( typeof( e.pageX ) == 'number' ) { var xcoord = e.pageX; var ycoord = e.pageY; } else {
		var xcoord = e.clientX; var ycoord = e.clientY;
		if( !( ( window.navigator.userAgent.indexOf( 'Opera' ) + 1 ) || ( window.ScriptEngine && ScriptEngine().indexOf( 'InScript' ) + 1 ) || window.navigator.vendor == 'KDE' ) ) {
			if( document.documentElement && ( document.documentElement.scrollTop || document.documentElement.scrollLeft ) ) {
				xcoord += document.documentElement.scrollLeft; ycoord += document.documentElement.scrollTop;
			} else if( document.body && ( document.body.scrollTop || document.body.scrollLeft ) ) {
				xcoord += document.body.scrollLeft; ycoord += document.body.scrollTop; } } }
	return [xcoord,ycoord];
}

function slideIsDown(e) {
	window.msStartCoord = sliderMousePos(e); 
    window.lyStartCoord = this.style?[parseInt(this.style.left),parseInt(this.style.top)]:[parseInt(this.left),parseInt(this.top)];
	window.storeLayer = this;
    if (document.addEventListener && document.releaseEvents) {
		// Netscape/Mozilla
		document.captureEvents(Event.MOUSEMOVE | Event.MOUSEUP );
		document.addEventListener("mousemove", slideIsMove, true);
		document.addEventListener("mouseup", slideIsUp, true);
	}
	else if (document.attachEvent) {
		// Internet Explorer
		document.attachEvent("onmousemove", slideIsMove);
		document.getElementById(this.id).setCapture();
	}
    return false;
}

function slideIsUp(e) {
	if (window.storeLayer == null)
	{
		return false;
	}
    if( window.storeLayer && window.storeLayer.stopFunc )
    {
        window.storeLayer.stopFunc(theNewPos/window.storeLayer.maxLength);
    }
    if (document.removeEventListener && document.releaseEvents) {
		// Netscape/Mozilla
		document.releaseEvents(Event.MOUSEMOVE | Event.MOUSEUP );
		document.removeEventListener("mousemove", slideIsMove, true);
		document.removeEventListener("mouseup", slideIsUp, true);
	}
	else if (document.detachEvent) {
		// Internet Explorer
		document.detachEvent("onmousemove", slideIsMove);
		document.getElementById(this.id).releaseCapture();
	}
	window.storeLayer = null;
    return false;
}

function slideIsMove(e) {

	if (window.storeLayer == null)
	{
		return true;
	}
	
	var msMvCo = sliderMousePos(e);
	if( !e ) {
		e = window.event ? window.event : ( new Object() );
	}

	var theLayer = window.storeLayer.style ? window.storeLayer.style : window.storeLayer; var oPix = document.childNodes ? 'px' : 0;

	if( window.storeLayer.hor ) {
		var theNewPos = window.lyStartCoord[0] + ( msMvCo[0] - window.msStartCoord[0] );
	if( theNewPos < 0 ) { theNewPos = 0; } if( theNewPos > window.storeLayer.maxLength ) { theNewPos = window.storeLayer.maxLength; }
		theLayer.left = theNewPos + oPix;
	} else {
		var theNewPos = window.lyStartCoord[1] + ( msMvCo[1] - window.msStartCoord[1] );
	if( theNewPos < 0 ) { theNewPos = 0; } if( theNewPos > window.storeLayer.maxLength ) { theNewPos = window.storeLayer.maxLength; }
		theLayer.top = theNewPos + oPix;
	}
	
	if( e.type && e.type.toLowerCase() == 'mousemove' ) {

        if( window.storeLayer.moveFunc )
        {
            window.storeLayer.moveFunc(theNewPos/window.storeLayer.maxLength);
        }
	}
	return false;
}

function setSliderPosition(oPortion) {
	//set the slider's position
	if( isNaN( oPortion ) || oPortion < 0 ) {
		oPortion = 0;
	}
	if( oPortion > 1 ) {
		oPortion = 1;
	}
	var theDiv = getRefToDivNest(this.id);
	if( theDiv.style ) {
		theDiv = theDiv.style;
	}	
	oPortion = Math.round( oPortion * this.maxLength );
	var oPix = document.childNodes ? 'px' : 0;
	if( this.align ) {
		theDiv.left = oPortion + oPix;
	} else {
		theDiv.top = oPortion + oPix;
	}
}

function NCSSliderEx(oThght,oTwdth,oTcol,oTBthk,oTBcol,oTRthk,oTRcol,oBhght,oBwdth,oBcol,oBthk,oBtxt,oAlgn,oMf,oSf) {
	if( document.layers ) {
		document.write(
			'<ilayer left="0" top="0" height="'+(oThght+(2*oTBthk))+'" width="'+(oTwdth+(2*oTBthk))+'" bgcolor="'+oTBcol+'">'+
			'<ilayer left="'+oTBthk+'" top="'+oTBthk+'" height="'+oThght+'" width="'+oTwdth+'" bgcolor="'+oTcol+'">'+
            '<layer left="'+(oAlgn?0:Math.floor((oTwdth-oTRthk)/2))+'" top="'+(oAlgn?Math.floor((oThght-oTRthk)/2):0)+'" height="'+(oAlgn?oTRthk:oThght)+'" width="'+(oAlgn?oTwdth:oTRthk)+'" bgcolor="'+oTRcol+'"></layer>'+
            '<layer left="'+(oAlgn?0:Math.floor((oTwdth-(oBwdth+(2*oBthk)))/2))+'" top="'+(oAlgn?Math.floor((oThght-(oBhght+(2*oBthk)))/2):0)+'" height="'+(oBhght+(2*oBthk))+'" width="'+(oBwdth+(2*oBthk))+'" bgcolor="#000000" onmouseover="this.captureEvents(Event.MOUSEDOWN);this.captureEvents(Event.MOUSEUP);this.hor='+oAlgn+';this.maxLength='+((oAlgn?oTwdth:oThght)-((oAlgn?oBwdth:oBhght)+(2*oBthk)))+';this.moveFunc='+oMf+';this.stopFunc='+oSf+';this.onmousedown=slideIsDown;this.onmouseup=slideIsUp;this.onmousemove=slideIsMove;" name="NCSSliderControl'+NCSSliderControl+'">'+
			'<layer left="0" top="0" height="'+(oBhght+oBthk)+'" width="'+(oBwdth+oBthk)+'" bgcolor="#ffffff"></layer>'+
			'<layer left="'+oBthk+'" top="'+oBthk+'" height="'+oBhght+'" width="'+oBwdth+'" bgcolor="'+oBcol+'">'+
			oBtxt+'</layer></layer></ilayer></ilayer>'
		);
	} else {
		document.write(
			'<div style="position:relative;left:0px;top:0px;height:'+(oThght+(2*oTBthk))+'px;width:'+(oTwdth+(2*oTBthk))+'px;background-color:'+oTBcol+';font-size:0px;">'+
			'<div style="position:relative;left:'+oTBthk+'px;top:'+oTBthk+'px;height:'+oThght+'px;width:'+oTwdth+'px;background-color:'+oTcol+';font-size:0px;">'+
			'<div style="position:absolute;left:'+(oAlgn?0:Math.floor((oTwdth-oTRthk)/2)) + 1 +'px;top:'+(oAlgn?Math.floor((oThght-oTRthk)/2):0)+'px;height:'+(oAlgn?oTRthk:oThght)+'px;width:'+(oAlgn?oTwdth-2:oTRthk) +'px;background-color:'+oTRcol+';font-size:0px;"></div>'+
            '<div style="position:absolute;left:'+(oAlgn?0:Math.floor((oTwdth-(oBwdth+(2*oBthk)))/2))+'px;top:'+(oAlgn?Math.floor((oThght-(oBhght+(2*oBthk)))/2):0)+'px;height:'+(oBhght+(2*oBthk))+'px;width:'+(oBwdth+(2*oBthk))+'px;font-size:0px;" ondragstart="return false;" onselectstart="return false;" onmouseover="this.hor='+oAlgn+';this.maxLength='+((oAlgn?oTwdth:oThght)-((oAlgn?oBwdth:oBhght)+(2*oBthk)))+';this.moveFunc='+oMf+';this.stopFunc='+oSf+';this.onmousedown=slideIsDown;this.onmouseup=slideIsUp;" id="NCSSliderControl'+NCSSliderControl+'">'+
            '<div style="border-top:'+oBthk+'px solid #ffffff;border-left:'+oBthk+'px solid #ffffff;border-right:'+oBthk+'px solid #000000;border-bottom:'+oBthk+'px solid #000000;">'+
			'<div style="height:'+oBhght+'px;width:'+oBwdth+'px;font-size:0px;background-color:'+oBcol+';cursor:default;">'+
            '<span style="width:100%;text-align:center;">'+oBtxt+'</span></div></div></div></div></div>'
		);
	}
	this.id = 'NCSSliderControl' + NCSSliderControl; 
	this.maxLength = (oAlgn?oTwdth:oThght)-((oAlgn?oBwdth:oBhght)+(2*oBthk));
	this.align = oAlgn; this.setPosition = setSliderPosition; NCSSliderControl++;
}

function updateAffidabilitaRicerca(value) {
	value = Math.round(value * 100);
	value = Math.ceil(value/NCSSliderPass);
	value = value*NCSSliderPass;
			
	document.getElementById("VITransparency").value = value + "%";
}

function updateBuffer(value) {
	value = Math.round(value * 1000);
	value = Math.ceil(value/NCSSliderPassBuffer);
	value = value*NCSSliderPassBuffer;
			
	document.getElementById("bufferValue").value = value + "m";
}
