function popS(idref)
{
if (idref != '')
{
var now = new Date()
var totTime = now.getHours() + now.getMinutes() + now.getSeconds()
var newWin = window.open("/iweb/cf/tools/popViewSkill.aspx?id=" + idref,"iskill"+totTime,"height=400, width=410, status=no, channelmode=no, toolbar=no, menubar=no, resizable=no, location=no, scrollbars=yes");
newWin.focus();
//put in nav elem: <iframe id="popwinabil" style="width:400px;height:380px; top:150px; left:22px; z-index:120; display:none; position:absolute; border-width:thick; border-style:outset;"></iframe>
//var getit = window.document.getElementById('popwinabil');
//getit.style.display = 'inline';
//getit.src='/iweb/cf/tools/popViewSkill.aspx?id=' + strSkillId;
}
else
alert('You must supply a skill identifier.');
return false; //-- no movement in parent window --
}
