// JavaScript Document

var new_win;
function open_win(url) {
	if (new_win != "" && new_win != null) {
		//alert(new_win);
		new_win.close();
	}
	var theUrl = "images/" + url;
	var imgWidth = document.images.heritageImg.width;
	var imgHeight = document.images.heritageImg.height;
	
	//*****CALCULATE POPUP DIMENSIONS*****//
	var winWidth = parseInt(imgWidth + 22 + ((imgWidth / 432) * 180),10);
	var winHeight = parseInt(imgHeight + 36 + ((imgHeight / 432) * 180),10);
	
	new_win = window.open(theUrl,"new_win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1, width=" + winWidth + ",height=" + winHeight + ",left=20,top=20,screenX=20,screenY=20");
	
	//*****NETSCAPE RESIZE*****//
	new_win.outerWidth = winWidth;
	new_win.outerHeight = winHeight;
	
	//*****IE RESIZE*****//
	new_win.resizeTo(winWidth+12,winHeight+24);
	
	//*****WRITE HTML*****//
	new_win.document.write("<html><head><title>ACLD Heritage Collection</title>");
	new_win.document.write("<LINK rel=StyleSheet href='../resources/heritageStyles.css' type='text/css'></head>");
	new_win.document.write("<body><p align='center'><table cellpadding='3'><tr><td><img src='" + theUrl +"' width='" + (parseInt(winWidth) - 22) + "'></td></tr></table>");
	new_win.document.write("<a href='javascript:window.close()'>Close Window</a></p>");
	new_win.document.write("</body></html>");
	
	new_win.focus();
}
