				function flipImage(name) {

					document.getElementById(name).src = "img/h_" + name + "_on.jpg";

				}

				function flipBack() {

					document.getElementById("fashion").src 		= "img/h_fashion_off.jpg";
					document.getElementById("artwork").src 		= "img/h_artwork_off.jpg";
					document.getElementById("exhibitions").src 	= "img/h_exhibitions_off.jpg";
					document.getElementById("contact").src 		= "img/h_contact_off.jpg";
					document.getElementById("biography").src 		= "img/h_biography_off.jpg";

				}


				function flipAll() {

					document.getElementById("fashion").src 		= "img/h_fashion_on.jpg";
					document.getElementById("artwork").src 		= "img/h_artwork_on.jpg";
					document.getElementById("exhibitions").src 	= "img/h_exhibitions_on.jpg";
					document.getElementById("contact").src 		= "img/h_contact_on.jpg";
					document.getElementById("biography").src 		= "img/h_biography_on.jpg";

				}


				function showImage(id, orinitation) {

	 				document.getElementById("changer").width = "70";
					document.getElementById("changer").height = "10";
					document.getElementById("changer").style.border = "none";
					document.getElementById("changer").src = "img/timer.gif";


					imgWidth = "450";
					imgHeight = "300";



					if(orinitation == "p") { imgWidth = "300"; 
						imgHeight = "450"; }
					if(orinitation == "s") { imgWidth = "300"; 
						imgHeight = "300"; }


	 				document.getElementById("width").value = imgWidth;
					document.getElementById("height").value = imgHeight;
					document.getElementById("tempImage").src = "img/photos/" + id + ".jpg";





				}

				function imageLoaded() {

					document.getElementById("changer").style.border = "1px solid #2D2D2D";
					document.getElementById("changer").src = document.getElementById("tempImage").src;

	 				document.getElementById("changer").width = document.getElementById("width").value;
					document.getElementById("changer").height = document.getElementById("height").value;

				}



	var new_windowWindow=null;

	function new_window(mypage,myname,w,h,pos,infocus){
		if(pos=='random'){
			LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
			TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
		}
		if(pos=='center'){
			LeftPosition=(screen.width)?(screen.width-w)/2:100;
			TopPosition=(screen.height)?(screen.height-h)/2:100;
		} else 
			if((pos!='center' && pos!='random') || pos==null){LeftPosition=100;TopPosition=100;}settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
			new_windowWindow=window.open('',myname,settings);
			if(infocus=='front'){new_windowWindow.focus();new_windowWindow.location=mypage;
		}
	}

