if (parent.frames.length == 0) {
    
targetPage = new String(location);
cutPoint = targetPage.lastIndexOf('/') + 1;
targetPage = targetPage.substring(cutPoint);

if (targetPage == 'item_02.htm') {
    targetPage = '../../home.htm';
}else{
    targetPage = '../../' + targetPage;   
}
    
document.writeln('<br>', '<div align="left"><span class=frameText>', 'Click ' +
'<a href="' + targetPage + '" class=noFrames>here</a> to activate the site ' +
'navigation menu', '</span></div>', '<br>', '<br>');

}