 function combochange(label) {
		document.getElementById(label).style.cursor = "pointer";		
		document.getElementById(label).style.backgroundColor = "#ffffff";
	}
	
	function combochangeback(label) {	
		document.getElementById(label).style.cursor = "";	
		document.getElementById(label).style.backgroundColor = "#f1f1f1";	
	}
	
	function combochangeandshow() {
		document.getElementById('bulk').style.display = "block";
		document.getElementById('actlabel').style.cursor = "pointer";	
	}
	
	function combochangeandhide(label) {
		document.getElementById('bulk').style.display = "none";
		document.getElementById('actlabel').style.cursor = "";	
	}
	
	function combochangelocation(location,label,mytarget) {
		combochangeback(label);
		if (mytarget == 0) {
			document.location = location;
		}
		else 
		{	
			window.open(location, '_blank','width=1024,height=768,location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars,resize');
		}
		
	}	

