

function ToggleArea(id,id2,id3){

document.getElementById(id).className = 'areaVisible';
	
document.getElementById(id2).className = 'areaInvisible'; 
document.getElementById(id3).className = 'areaInvisible'; 

document.getElementById(id + 'Title').className = 'currentLink'; 
document.getElementById(id2 + 'Title').className = 'otherLink'; 
document.getElementById(id3 + 'Title').className = 'otherLink'; 

}

function ReplaceMainImage(folder,imageText){


document.getElementById('mainImage').src = "images/" + folder + "/small.jpg";
document.getElementById('imageInformation').innerHTML = imageText.toString().replace('#','"') + '"';

}

function OpenLargeWindow(){

	var oNewWindow = window.open('large.htm',null, 'resizable=no,scrollbars=yes,height=600,width=780,status=yes,toolbar=no,menubar=no,location=no');

}

function LargeOnLoad(){
	
	document.getElementById('largeImage').src = opener.document.getElementById('mainImage').src.toString().replace('small','large');
	document.getElementById('imageInformation').innerHTML = opener.document.getElementById('imageInformation').innerHTML;

}