<!-- // Hide from non-JavaScript browser

var win1Open = null
var win2Open = null

function displayImage(picName, windowName, windowWidth, windowHeight)
{
		return window.open(picName,windowName,"toolbar=no,scrollbars=no,resizable=no,width=" + (parseInt(windowWidth)+25)  + ",height=" + (parseInt(windowHeight)+55)) 
}

function winClose()
{ 
		// if(win1Open != null) win1Open.close() 
		if(win2Open != null) win2Open.close()
}

function doNothing(){}

// -->
