<!-- DREAMWEAVER POPUP FUNCTIONS
var popUpWin = 0;

function popUpWindow(item_id)
{
  	if(popUpWin)
  	{
  		if(!popUpWin.closed) popUpWin.close();
  	}
  	popUpWin = open('image.php?item_id='+item_id, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=600,left=10,top=10,screenX=10,screenY=10');
}

function popUpWindowAdditional(path)
{
  	if(popUpWin)
  	{
  		if(!popUpWin.closed) popUpWin.close();
  	}
  	popUpWin = open('image.php?path='+path, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=600,left=10,top=10,screenX=10,screenY=10');
}


function popUp(URL)
{
  	if(popUpWin)
  	{
  		if(!popUpWin.closed) popUpWin.close();
  	}
  	popUpWin = open(URL, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=600,left=10,top=10,screenX=10,screenY=10');
}


//-->	

