function ulinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") && anchor.className == "ulink")
     	anchor.target = "_blank";
 }
}
window.onload = ulinks;

function addtofav(linkUrl,linkTitle){
   if (!document.all) {
     top.location.replace(linkUrl);
     alert('Please press CTRL-D to bookmark this page');     
   }
   else external.AddFavorite(linkUrl,linkTitle);
   return false;
}

var key = document.location.pathname.replace(/\\/g,'/');

var tokens = key.split('/');
var len = tokens.length;
var product = "";
var book = "";
var lang =null;

if(len > 3)
{
	product = tokens[len - 4];
	book = tokens[len - 3];
	lang = tokens[len -6];
}

var langstr = lang ? (lang +'/') : '';

self.document.writeln('<table width="100%" border="0" align="center">\n<tr>\n<td align="left" width="28%">');
if (typeof prev_link != 'undefined')
{
self.document.writeln('  <a href="'+ prev_link + '" class="navigation"><img src="../../../docui2002/images/prev.gif" border=0 alt="Previous"></a>');
self.document.writeln('  <img src="../../../docui2002/images/virt_dot-line.gif" border="0" alt="">');
}
if (typeof next_link != 'undefined')
{
self.document.writeln('  <a href="'+ next_link + '" class="navigation"><img src="../../../docui2002/images/next.gif" border=0 alt="Next"></a>');
}
self.document.writeln('  </td>\n<td align="center" width=10%>&nbsp;</td>');
self.document.writeln('  <td align="right" width="62%">');
self.document.writeln(' <a href="http://www.novell.com/'+ langstr  + 'documentation/' + product + '/pdfdoc/' + book +'/'+ book +'.pdf" target="_blank"><img src="../../../docui2002/images/body_pdf.gif" border=0 alt="View PDF version"></a>');
self.document.writeln('  <img src="../../../docui2002/images/virt_dot-line.gif" border="0" alt="">');
self.document.writeln('  <a href="#next" class="navigation"><img src="../../../docui2002/images/body_feedback.gif" border=0 alt="Comment"></a>');
self.document.writeln('  <img src="../../../docui2002/images/virt_dot-line.gif" border="0" alt="">');
self.document.writeln('  <a href="javascript:window.open(\'/info/sendemail.jsp?url='+document.location.href+'\', \'new\', \'resizable=yes, screenX=200, screenY=200, top=200, left=200, width=535, height=400\');void(true);"><img src="../../../docui2002/images/body_tell.gif" border=0 alt="Send this page to a friend"></a>');
self.document.writeln('  <img src="../../../docui2002/images/virt_dot-line.gif" border="0" alt="">');
self.document.writeln('  <a href="javascript:;" class="navigation" onClick="addtofav(window.location.href,document.title); return false"><img src="../../../docui2002/images/body_bookmark.gif" border=0 alt="Bookmark this page"></a>');
self.document.writeln('  </td>');
self.document.writeln('  </table>'); 