You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
326 B
JavaScript
19 lines
326 B
JavaScript
function contentDiv(i)
|
|
{
|
|
for(j=1;j<=3;j++)
|
|
{
|
|
document.getElementById('content'+j).style.display='none';
|
|
|
|
}
|
|
document.getElementById('content'+i).style.display='block';
|
|
}
|
|
function mapDiv(i)
|
|
{
|
|
for(j=1;j<=4;j++)
|
|
{
|
|
document.getElementById('map'+j).style.display='none';
|
|
|
|
}
|
|
document.getElementById('map'+i).style.display='block';
|
|
}
|