function popT(idref)
{
if (idref != '')
{	
var now = new Date()
var totTime = now.getHours() + now.getMinutes() + now.getSeconds()      	
newWin = window.open("/iweb/cf/tools/popViewTrait.aspx?id=" + idref,"itrait"+totTime,"height=400, width=410, status=no, channelmode=no, toolbar=no, menubar=no, resizable=no, location=no, scrollbars=yes");
newWin.focus();
}
else
alert('You must supply a trait identifier.');
return false; //-- no movement in parent window --
}
