<!-- Begin

function popUp(mylink)
{
// Generate a unique window name
day = new Date();
id = day.getTime();
windowname = 'window'+id


if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
   
// Track the link
if(document.images){ 
        (new Image()).src="/Dental1/trackclick.jsp?url="+href+"&loc="+document.location; 
} 
   
// Open the window
window.open(href, windowname, 'toolbar=1,scrollbars=1,location=1,directories=1,statusbar=1,menubar=1,resizable=1,width=850,height=650');
return false;
}


function noTrackPopUp(mylink)
{
// Generate a unique window name
day = new Date();
id = day.getTime();
windowname = 'window'+id


if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
      
// Open the window
window.open(href, windowname, 'toolbar=1,scrollbars=1,location=1,directories=1,statusbar=1,menubar=1,resizable=1,width=850,height=650');
return false;
}


function trackLink(mylink)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
   
// Track the link
if(document.images){ 
        (new Image()).src="/Dental1/trackclick.jsp?url="+href+"&loc="+document.location; 
} 

return true;
}
//-->

