// JavaScript Document
function display(type){
var max = 3;
for(i = 1; i <= 3; i++){
var hotStr = "Banner" + i;
if(type == i){
document.getElementById(hotStr).style.display = 'block';
}
else
{
document.getElementById(hotStr).style.display = 'none';
}
}
}
/*var maxPhoCount = 4;
var flagPho = 1;
function changeDiv(count){
if(count == undefined)
{
alert(count);
count = 1;
}
for(i = 1; i <= maxPhoCount; i++)
{
var  new_pro_Div = "Banner" + i;
if(i == count)
{
document.getElementById(new_pro_Div ).style.display = "block";
}
else
{
document.getElementById(new_pro_Div ).style.display = "none";
}
}
}*/