function doView( Ifile )
{
	var URL = "/DHARMA/address/view.php"
			+"?Ifile="+Ifile;
	var OPTIONS = "width=1,height=1,screeny=1,left=1,top=0"
			+"location=0,menubar=0,resizable=no,scrollbars=no,status=0,"
			+"titlebar=0,toolbar=0";
	var WIN_IMAGE = window.open( URL, "WIN_IMAGE", OPTIONS );
	WIN_IMAGE.focus();
}
function doLink( Iuid )
{
	var URL = "/DHARMA/address/link.php?Iuid="+Iuid;
	OPTIONS = "";
	var WIN_LINK = window.open( URL, "WIN_LINK", OPTIONS );
	WIN_LINK.focus();
}
