<!--

function updatecboSCReport(x){
	var temp=window.document.getElementById('cboSCReport')
	for (m=temp.options.length-1;m>0;m--)
	 temp.options[m]=null
	  
	for (i=0;i<screport[x].length;i++)
	  temp.options[i]=new Option(screport[x][i].text,screport[x][i].value)

    temp.options[0].selected=true
	if ((x == 0) || (screport[x][0].text == 'Not Applicable')){
	  temp.disabled=true
	} else {
	  temp.disabled=false
	}
}
	

	
function openReport(strLink){
	var temp=window.document.getElementById('cboCountry')
	temp.options[0].selected=true
	var temp=window.document.getElementById('cboSCReport')
	temp.options[0].selected=true
	temp.disabled=true
	window.open(strLink,'_self')
}


function openPresentation(strPres){
window.open(strPres,'popup','toolbar=no;resizable=yes,width=820,height=620,scrollbars=no');
}

function changeGlobalContacts(strService){

	var strLink = 'link' + strService
	strService = 'global' + strService
	
	document.getElementById('globalEur').style.display = 'none';
	document.getElementById('globalAPAC').style.display = 'none';
	document.getElementById('globalUS').style.display = 'none';
	document.getElementById('linkEur').style.display = 'none';
	document.getElementById('linkAPAC').style.display = 'none';
	document.getElementById('linkUS').style.display = 'none';
	document.getElementById(strService).style.display = 'block';
	document.getElementById(strLink).style.display = 'block';
	
	
	
}
