function openImagePopUp(src, width, height)
{
	var title = arguments[3];	
	var x = arguments[4] || (screen.width-width)/2;	
	var y = arguments[5] || (screen.height-height)/2;	

	if (!(src.indexOf("http")==0 || src.indexOf("/")==0)) {
		src = _ABS_PATH+src;
	}
	
	var options = "scrollbars=no,status=no,resizable=no,width="+width+",height="+height;	
	if (x) options+= ",left="+x+",screenX="+x;
	if (y) options+= ",top="+y+",screenY="+y;

	imagePopup = window.open( "", "imagePopup", options);

	imagePopup.document.write( "<html><head>" );
	if (title) imagePopup.document.write( "<title>"+title+"</title>" );
	imagePopup.document.write( '</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' );
	imagePopup.document.write( "<img src='"+src+"' width='"+width+"' height='"+height+"'>" );	
	imagePopup.document.write( "</body></html>" );
}