//=====================================================================||
//              DeVivo JavaScript                                      ||
//                                                                     ||
// 			                                               ||
// JavaScript Shop Module, V.1.0                                       ||
//=====================================================================||

browserName = navigator.appName;
browserVer = parseInt ( navigator.appVersion );

version = "n2";
if ( browserName == "Netscape" && browserVer >= 3 ) version = "n3";
if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) version = "e4";

//-------------------------------------------------------------------------------
function footer( pagename ) {
  // THIS IS navigation links that are repeated verbatim on each page  
   var strOutput      = "";   //String to be written to page 

	
		strOutput +=        "<li><a href=\"mailto:info@devivoast.com\">Contact</a></li>";
		
		if ( pagename != "noname" ){
		strOutput +=        "<li><a href=\"http://www.devivoast.com/aboutus.html\">About Us</a></li>";
	}
		
		if ( pagename != "noname" ){
		strOutput +=        "<li><a href=\"http://www.devivoast.com/index.html\">Home</a></li>";
	}
		
		if ( pagename != "noname" ){  
		strOutput +=        "<li><a href=\"http://www.devivoast.com/sitemap.html\">Site Map</a></li>";
 	}

		strOutput +=	    "<br/>";
		strOutput +=        "<font size=\"1\" color=\"#999999\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Website Copyright Devivo AST, Inc 2009.  All Rights Reserved.</font>";


	document.write(strOutput);
   	document.close();
}




//-------------------------------------------------------------------------------
// Start of no right click script <script language="JavaScript">
// No rightclick script.
// Find more great scripts and applets at the JavaFile!
// http://www.javafile.com
// Do not delete this header!

var message="Right Click has been diabled on this page."; // Put your message for the alert box between the quotes.

// Don't edit below!

function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}

if (document.layers) {  document.captureEvents(Event.MOUSEDOWN);  }

document.onmousedown=click;




