// Adobe Dreamweaver Rollover scripts
var imageWindow;

function displayImage(picName, windowName, windowWidth, windowHeight)
{
	if (imageWindow)
	{
		imageWindow.close();
	}
	
	var winHandle = window.open("", windowName,
		"toolbar=no,scrollbars=no,resizable=no,width=" + windowWidth +
		",height=" + windowHeight);
	
	if (winHandle != null)
	{
		var htmlString = "<html><head><title>image</title></head>" +
			"<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>" +
			"<a href=javascript:window.close()><img src= '" +
			picName + "' border=0 alt=Close!!></a>" +
			"</body></html>";
		winHandle.document.open();
		winHandle.document.write(htmlString);
		winHandle.document.close();
	}
	
	if (winHandle != null) winHandle.focus();
	return winHandle;
}

function doNothing() {}
