// JavaScript Document


/* begin image rollovers*/
	if (document.images) {
		Home = new Image
		About = new Image
		Media = new Image
		Contact = new Image
		Poetry = new Image
		Links = new Image
		
		HomeR = new Image
		AboutR = new Image
		MediaR = new Image
		ContactR = new Image
		PoetryR = new Image
		LinksR = new Image
		
		Home.src = "images/home.gif"
		About.src = "images/about.gif"
		Media.src = "images/media.gif"
		Contact.src = "images/contact.gif"
		Poetry.src = "images/poetry.gif"
		Links.src = "images/links.gif"
		
		HomeR.src = "images/homeR.gif"
		AboutR.src = "images/aboutR.gif"
		MediaR.src = "images/mediaR.gif"
		ContactR.src = "images/contactR.gif"
		PoetryR.src = "images/poetryR.gif"
		LinksR.src = "images/linksR.gif"
		}
	
		function chgImg(imgField,newImg) {
			if (document.images) {
				document[imgField].src= eval(newImg + ".src")
			}
		}
/* end image rollovers*/

/* begin open new browser window*/
var newWindow = null;
	function openWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth;
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}

function closeWindow() {
	if (newWindow != null)  {
	newWindow.close();
	newWindow = null;
	}
}
/*end open new browser window*/