	function valContact(){
		document.frmContact.action = '/contact/save'
		return true
	}	
	function valBooking(){
		document.frmBooking.action = '/booking/save'
		return true
	}
	function valGuestbook(){
		document.frmGuestbook.action = '/guestbook/save'
		return true
	}
	function preloadImg(dat){
		var picArr = [];
		for (i = 0; i<dat.length; i++){			
			picArr[i]= new Image(100,100); 
			picArr[i].src=dat[i]; 		
		}
	}
	
	function showpic(fname, id, alt) {
		document.getElementById(id).innerHTML="<img src='/images/gallery/large/" + fname + "' alt='" + alt + "' title='" + alt + "' />";
	}
	
	function valIJPContact(){
		document.frmContact.action = '/emailijp/save';
		return true;
	}	

