var enablepersist="on"
var collapseprevious="yes"

if (document.getElementById){
document.write('<style type="text/css">')
document.write('.switchcontent{display:none;}')
document.write('</style>')
}

function getElementbyClass(classname){
ccollect=new Array()
var inc=0
var alltags=document.all? document.all : document.getElementsByTagName("*")
for (i=0; i<alltags.length; i++){
if (alltags[i].className==classname)
ccollect[inc++]=alltags[i]
}
}

function contractcontent(omit){
var inc=0
while (ccollect[inc]){
if (ccollect[inc].id!=omit)
ccollect[inc].style.display="none"
inc++
}
}

function expandcontent(cid){
if (typeof ccollect!="undefined"){
if (collapseprevious=="yes")
contractcontent(cid)
document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="block")? "block" : "none"
}
}

function revivecontent(){
contractcontent("omitnothing")
selectedComponents=getselectedComponent()
if (selectedComponents!="") {document.getElementById(selectedComponents).style.display="block"}
}

function get_cookie(Name) { 
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { 
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function getselectedComponent(){
pageUrl = window.location.pathname;
start = pageUrl.indexOf("DPS_",0);
end = pageUrl.indexOf(".htm",0); end += 3;
page = pageUrl.substr(start,end);
section = page.substr(0,8);
selectedComponent=""
if (section=="DPS_azie") {selectedComponent="elOneParent"}
if (section=="DPS_serv") {selectedComponent="elTwoParent"}
if (section=="DPS_soft") {selectedComponent="elThreeParent"}
if (section=="DPS_inte") {selectedComponent="elFourParent"}
if (section=="DPS_form") {selectedComponent="elFiveParent"}
if (section=="DPS_prod") {selectedComponent="elSixParent"}
if (section=="DPS_cont") {selectedComponent="elSevenParent"}
if (section=="DPS_jobs") {selectedComponent="elEightParent"}
if (section=="DPS_link") {selectedComponent="elNineParent"}
return selectedComponent
}

function saveswitchstate(){
var inc=0, selectedItem=""
while (ccollect[inc]){
if (ccollect[inc].style.display=="block")
selectedItem+=ccollect[inc].id+"|"
inc++
}
document.cookie=window.location.pathname+"="+selectedItem
}

function do_onload(){
uniqueidn=window.location.pathname+"firsttimeload"
getElementbyClass("switchcontent")
if (enablepersist=="on" && typeof ccollect!="undefined"){
document.cookie=(get_cookie(uniqueidn)=="")? uniqueidn+"=1" : uniqueidn+"=0" 
firsttimeload=(get_cookie(uniqueidn)==1)? 1 : 0 //check if this is 1st page load
revivecontent()
}
}

if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload

if (enablepersist=="on" && document.getElementById)
window.onunload=saveswitchstate

function MM_goToURL() {
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
var pageUrl = window.location.pathname;
start = pageUrl.indexOf("DPS_",0);
end = pageUrl.indexOf(".htm",0); end += 3;
pageFrom = pageUrl.substr(start,end);
sectionFrom = pageUrl.substr(start,8);
sectionTo = args[1].substr(0,8);
if ((sectionFrom == sectionTo) && (pageFrom == args[1])) {expandcontent(args[2]);} // Stessa sezione, stessa pagina
if ((sectionFrom == sectionTo) && (pageFrom != args[1])) {for (i=0; i<(args.length-1); i+=3) eval(args[i]+".location='"+args[i+1]+"'");} // Stessa sezione, pagina diversa
if (sectionFrom != sectionTo) {for (i=0; i<(args.length-1); i+=3) eval(args[i]+".location='"+args[i+1]+"'");} // Sezione diversa, pagina diversa
}