function DivShow2(DivObj){
	for(var t=1;t<=3;t++){
		document.getElementById(DivObj.charAt(0) + t).style.display="none";
		document.getElementById(DivObj.charAt(0) + t +"S").style.display="none";
		}	
	document.all(DivObj).style.display="block";
	document.all(DivObj + "S").style.display="block";
	}
function OpenNew(Url){
	window.open(Url);
	}
function DivShow(DivObj){
	for(var t=1;t<=3;t++){
		$("#"+DivObj.charAt(0) + t).hide();
		$("#"+DivObj.charAt(0) + t +"S").hide();
		}	
	$("#"+DivObj).show();
	$("#"+DivObj + "S").show();
	}
$(document).ready(function(){
	var tmparr=new Array("A1","B1","C1","D1","E1")
	var x
	for(x in tmparr){
	DivShow(tmparr[x]);
	}
});

