<!--
// browser detection
var ns4 = (document.layers); 
var ie4 = (document.all); 
// mm vs. ie style sheet
if (ns4) {
 document.write ('<link rel="stylesheet" type="text/css" href="../style_nn.css">');
} else {
 document.write ('<link rel="stylesheet" type="text/css" href="../style.css"> ');
}
function openPop(pageToLoad,file,text,width,height) {
	if (file != undefined) pageToLoad += "?file="+file;
	if (text != '') pageToLoad += "&text="+escape(text);
	window.open(pageToLoad, 'popWin', 'width='+width+',height='+height+',location=0,menubar=0,resizable=1,scrollbars=0,toolbar=0,titlebar=0,status=0');
}

function fold(id){
   if (document.all){
     if(document.all[id].style.display == 'none'){
       document.all[id].style.display = '';
     } else {
       document.all[id].style.display = 'none';
     }
  return false;
   } else if (document.getElementById){
     if(document.getElementById(id).style.display == 'none'){
       document.getElementById(id).style.display = 'block';
     } else {
       document.getElementById(id).style.display = 'none';
     }
  return false;
   } else if(document.layers){
    //document.layers['nvideo'].visibility = 'visible';
	//alert('nn');
	document.top.location = "http://www.tonythebassguy.com/video.html";
	return false;
  }
 }
 //-->