function popup(url, width, height) {
	window.open(url, '', 'toolbar=0,scrollbars=0,location=0,statusbar=1,'
			+ 'menubar=0,resizable=1,width='+width+',height='+height);
}

function switchtitle (title) {

	title1 = document.getElementById('nav_menu_title1').style
	title1.display = "none"
	title2 = document.getElementById('nav_menu_title2').style
	title2.display = "none"
	title3 = document.getElementById('nav_menu_title3').style
	title3.display = "none"
	title4 = document.getElementById('nav_menu_title4').style
	title4.display = "none"
	title5 = document.getElementById('nav_menu_title5').style
	title5.display = "none"


	if (title) {
	title = document.getElementById(title).style
	title.display = "block"
	}
}

function switchimage (image) {
	title1 = document.getElementById('image1').style
	title1.display = "none"
	title2 = document.getElementById('image2').style
	title2.display = "none"
	
	title = document.getElementById(image).style
	title.display = "block"	

}

function LoadImages(){
	var Imgs=new Array();
	for (var x=0;x<PreLoad.length;x++){
		Imgs[x]=new Image();
		Imgs[x].src=PreLoad[x];
		//document.getElementById('debug').innerHTML=document.getElementById('debug').innerHTML+PreLoad[x]+'<BR>';
		window.status='Loading Image: '+PreLoad[x];
	}
	window.status='Done';
}

var PreLoad=new Array();
PreLoad.push('images/front/SEND_OVER.gif');
PreLoad.push('images/front/SEARCH_BUTTON_OVER.jpg');
PreLoad.push('images/front/SUBMIT_OVER.gif');
PreLoad.push('images/front/SAVE_DETAILS_OVER.gif');
PreLoad.push('images/front/ICON_PRINT_OVER.jpg');
PreLoad.push('images/front/MAP_OVER.jpg');
PreLoad.push('images/front/NEXT_PAGE_BUTTON_OVER.gif');
PreLoad.push('images/front/ADV_SEARCH_BUTTON_OVER.jpg');
PreLoad.push('images/front/MAP_OVER.jpg');
LoadImages();
