function cts_menu( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#69c';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#036';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function cts_menuclick( tableCellRef, navStyle, url ) {
	cts_menu( tableCellRef, 0, navStyle );
	go2( url );
}

function openitup()
{
  window.open('http://www.ctsinc-nj.com:8080/','helpdesk','height=700,resizable=yes,scrollbars=yes,status=yes,width=600');
}


function BringUpWindow(webpage) {
     var url = webpage;
     var hWnd = window.open(url,"Computer_Tech_Hosting","width=300,height=350,resizable=no,scrollbars=yes,status=yes");
     if (hWnd != null) {     if (hWnd.opener == null) { hWnd.opener = self; window.name = "home"; hWnd.location.href=url; } }
}

 
