var newWin = null;
 
function openWin(imageURL)
{
	var newWin = null;
	if ( ( newWin == null )
	|| newWin.closed )
	{  }
	else
	{
	newWin.close();
	}
	
	newWin = open( imageURL, "", "height=600,width=800,channelmode=0,dependent=1,directories=0,fullscreen=0,location=0, menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1" );
    newWin.focus();
}

