
var cM = null;
function hM( x, n ) { 
  if( x != cM ) {
   if ( x.className != 'select') {
    if( n ) 
      x.className='hover'; 
    else 
      x.className='tabmenu';
   }
  } 
  
}
function link( x, n ) {
  if ( x != cM ) {
	
    x.className='select';
    if (cM)
      cM.className = 'tabmenu';
    cM = x;
    
  } 
  location.href = n; 
}

function onLoadTab() {
form1.loadform.value = 'true';
form1.submit();
}
function popUp(link) {
	window.open(link,'win','')
}
function goSetup() {
	parent.location.href = 'setupframe.htm'; 
}

