// Function to open new window.

	var newWindow = null;
			 
	// Sets the position of new window in relation to screen width.
			 
	var leftPosition = 0;
	  if (screen) {
	  leftPosition = screen.width/3 
	}
			 
	function newPopUp(url) {
	       newWindow=window.open(url,"name","toolbar=no,location=no,scrollbars=yes,resizable,width=451,height=451,left=" + leftPosition + ",top=0")



	  if (window.focus) {
	     newWindow.focus() }

}




// Function to close new window from Parent.
			 
	function closePopUp() {
	  if (newWindow && !newWindow.closed) {
	newWindow.close();
			 }
}
// End of functions to open and close new windows.


// Code to implement image rollovers in navigation column.
	// This code relates to the "Home" link:	
	
	if (document.images) {
	  	home_off = new Image
		home_hov = new Image
				
		home_off.src = "images/home_off.gif"
		home_hov.src = "images/home_hov.gif"
				
	}
	else {
		home_off = ""
		home_hov = ""
				
		document.home_off = ""
    		document.home_hov = ""
    
		}
// End of image rollver for "Home" link.
		
		
// This code relates to the "gallery01" link:	
	
	if (document.images) {
	  	gallery01_off = new Image
		gallery01_hov = new Image
				
		gallery01_off.src = "images/gallery01_off.gif"
		gallery01_hov.src = "images/gallery01_hov.gif"
				
	}
	else {
		gallery01_off = ""
		gallery01_hov = ""
				
		document.gallery01_off = ""
    		document.gallery01_hov = ""
    

		}
// End of image rollver for "gallery01" link.
		
// This code relates to the "gallery02" link:	
	
	if (document.images) {
	  	gallery02_off = new Image
		gallery02_hov = new Image
				
		gallery02_off.src = "images/gallery02_off.gif"
		gallery02_hov.src = "images/gallery02_hov.gif"
				
	}
	else {
		gallery02_off = ""
		gallery02_hov = ""
				
		document.gallery02_off = ""
    		document.gallery02_hov = ""
    
		}
// End of image rollver for "gallery02" link.
		
// This code relates to the "gallery03" link:	
	
	if (document.images) {
	  	gallery03_off = new Image
		gallery03_hov = new Image
				
		gallery03_off.src = "images/gallery03_off.gif"
		gallery03_hov.src = "images/gallery03_hov.gif"
				
	}
	else {
		gallery03_off = ""
		gallery03_hov = ""
				
		document.gallery03_off = ""
    		document.gallery03_hov = ""
    
		}
		// End of image rollver for "gallery03" link.

// This code relates to the "gallery04" link:	
	
	if (document.images) {
	  	gallery04_off = new Image
		gallery04_hov = new Image
				
		gallery04_off.src = "images/gallery04_off.gif"
		gallery04_hov.src = "images/gallery04_hov.gif"
				
	}
	else {
		gallery04_off = ""
		gallery04_hov = ""
				
		document.gallery04_off = ""
    		document.gallery04_hov = ""
    
		}
		// End of image rollver for "gallery04" link.


// This code relates to the "Prints" link:	

if (document.images) {
	  	framedPrints_off = new Image
		framedPrints_hov = new Image
				
		framedPrints_off.src = "images/framedPrints_off.gif"
		framedPrints_hov.src = "images/framedPrints_hov.gif"
				
	}
	else {
		framedPrints_off = ""
		framedPrints_hov = ""
				
		document.framedPrints_off = ""
    		document.framedPrints_hov = ""
    
		}
// End of image rollver for "Prints" link.


// This code relates to the "Prices" link:

if (document.images) {
	  	prices_off = new Image
		prices_hov = new Image
				
		prices_off.src = "images/prices_off.gif"
		prices_hov.src = "images/prices_hov.gif"
				
	}
	else {
		prices_off = ""
		prices_hov = ""
				
		document.prices_off = ""
    		document.prices_hov = ""
    
		}
		// End of image rollver for "prices" link.


// This code relates to the "Links" link:	

if (document.images) {
	  	links_off = new Image
		links_hov = new Image
				
		links_off.src = "images/links_off.gif"
		links_hov.src = "images/links_hov.gif"
				
	}
	else {
		links_off = ""
		links_hov = ""
				
		document.links_off = ""
    		document.links_hov = ""
    
		}
// End of image rollver for "links" link.


		
// This code relates to the "contact" link:	
	
	if (document.images) {
	  	contact_off = new Image
		contact_hov = new Image
				
		contact_off.src = "images/contact_off.gif"
		contact_hov.src = "images/contact_hov.gif"
		
	}
	else {
		contact_off = ""
		contact_hov = ""
				
		document.contact_off = ""
    		document.contact_hov = ""
    
		}
// End of image rollver for "contact" link.
// End of code to implement image rollovers in navigation column.

