function show(flagit) {
	if (flagit=="promo"){
		if (document.layers){
		 document.layers['view_promotion'].display = "block"
		 document.layers['view_information'].display = "none"
		}else if (document.all){
		 document.all['view_promotion'].style.display = "block"
 		 document.all['view_information'].style.display = "none"
 		}else if (document.getElementById){
			document.getElementById('view_promotion').style.display = "block"
			document.getElementById('view_information').style.display = "none"
		}
		document.getElementById('promo_link').style.color = "#da521e"
		document.getElementById('info_link').style.color = "#000000"
	}
	else if (flagit=="info"){
		if (document.layers){
		 document.layers['view_promotion'].display = "none"
		 document.layers['view_information'].display = "block"
		}else if (document.all){
		 document.all['view_promotion'].style.display = "none"
 		 document.all['view_information'].style.display = "block"
 		}else if (document.getElementById){
			document.getElementById('view_promotion').style.display = "none"
			document.getElementById('view_information').style.display = "block"
		}
		document.getElementById('promo_link').style.color = "#000000"
		document.getElementById('info_link').style.color = "#da521e"	}
}