// Function for show/hide divs
function show(obj){
	//hide(obj)
	var o = document.getElementById(obj);
	if(o!=null){
		if(o.style.display=='none'){
			o.style.display='';
			document.getElementById(obj + 'Open').style.display='';
			document.getElementById(obj + 'Closed').style.display='none';
		}
		else {
			o.style.display='none'
			document.getElementById(obj + 'Open').style.display='none';
			document.getElementById(obj + 'Closed').style.display='';
		}
	}
}

function hide(obj){
	var elem = document.all.tags('div');
	if (elem!=null){
		for (i=0;i<elem.length;i++){
			if((elem[i].id.indexOf('subMenu')!=-1)&&(elem[i].id!=obj)&&(elem[i].id + 'Closed'!=obj)){
				elem[i].style.display='none';
			}
		}
	}
}
// End of Function

// Function for Kajak detail pictures Slideshow

function popUpKayakSlide(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=650,left = 150,top = 212');");
}

// End of Function

// Function for goback

function back() {
	history.go(-1);
}

// End of Function


