<!-------------------------------------------------------------------->
<!-- library: internet: view: document: write: html: br [kn, ri, sa, 06-05-2006 12:16:00] -->
function PROCInternetViewDocumentWriteHtmlBr( maxI ) {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad='
 // e.g.     PROCInternetViewDocumentWriteHtmlBr( 2 ); // gives e.g. ... ""
 // e.g.    '
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 var I = 0;
 var minI = 1;
 for ( I = minI; I <= maxI; I++ ) {
  document.write( '<BR/>' );
 }
}
<!-------------------------------------------------------------------->
<!-- library: warn [kn, ri, mo, 25-06-2001 13:43:16] -->
function PROCWarn( s ) {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad='
 // e.g.     PROCWarn( "test" ); // gives e.g. ... ""
 // e.g.    '
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 alert( s );
}
<!-------------------------------------------------------------------->
<!-- library: Internet: browser: name: is the name of the current browser equal to that of Microsoft Explorer? [kn, ri, we, 27-06-2001 13:11:52] -->
function FNBrowserCheckNameMicrosoftInternetExplorerNotB() {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad=' PROCWarn( FNBrowserCheckNameMicrosoftInternetExplorerNotB() ); // gives e.g. "false"'
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 return( FNMathCheckLogicNotB( FNBrowserCheckNameMicrosoftInternetExplorerB() ) );
}
<!-------------------------------------------------------------------->
<!-- library: math: logic: not [kn, ri, mo, 25-06-2001 16:16:39] -->
function FNMathCheckLogicNotB( B ) {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad='
 // e.g.     PROCMessage( FNMathCheckLogicNotB( false ) ); // gives true
 // e.g.    '
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 return( ! B );
}
<!-------------------------------------------------------------------->
<!-- library: Internet: browser: name: is the name of the current browser equal to that of Microsoft Explorer? [kn, ri, we, 27-06-2001 13:11:52] -->
function FNBrowserCheckNameMicrosoftInternetExplorerB() {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad=' PROCWarn( FNBrowserCheckNameMicrosoftInternetExplorerB() ); // gives e.g. "true"'
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 // return( FNBrowserCheckNameCentralB( FNBrowserNameMicrosoftInternetExplorerS() ) );
 return( ( navigator.userAgent.indexOf( "Opera" ) == -1 ) && ( navigator.userAgent.indexOf( "compatible" ) != -1 ) );
}
<!-------------------------------------------------------------------->
<!-- library: internet: view: design: for: browser [kn, ri, sa, 06-05-2006 14:27:58] -->
function PROCInternetViewDesignForBrowser( urlS ) {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad='
 // e.g.     PROCInternetViewDesignForBrowser( "Microsoft Internet Explorer" ); // gives e.g. ... ""
 // e.g.    '
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 document.write( '<TABLE' );
 document.write( '  ALIGN="center"' );
 document.write( '>' );
 document.write( '<!-------------------------------------------------------------------->' );
 document.write( '<TR>' );
 document.write( '<!-------------------------------------------------------------------->' );
 document.write( '<TD>' );
 document.write( '<!-------------------------------------------------------------------->' );
 document.write( '<FONT ' );
 document.write( '  ALIGN="center" ' );
 document.write( '  SIZE="1" ' );
 document.write( '  STYLE=" ' );
 document.write( '   FONT-WEIGHT: bold; ' );
 document.write( '  " ' );
 document.write( '> ' );
 document.write( '<!--------------------------------------------------------------------> ' );
 document.write( "This site is designed for" + " " + urlS );
 document.write( '<!--------------------------------------------------------------------> ' );
 document.write( '</FONT> ' );
 document.write( '<!--------------------------------------------------------------------> ' );
 document.write( '</TD> ' );
 document.write( '<!--------------------------------------------------------------------> ' );
 document.write( '</TR> ' );
 document.write( '<!--------------------------------------------------------------------> ' );
 document.write( '</TABLE> ' );
}
<!-------------------------------------------------------------------->
<!-- library: internet: view: web: page: modified: last: date: time [kn, ni, we, 03-09-2003  0:26:06] -->
function PROCInternetViewWebPageModifiedLastDateTime() {
 // e.g. <HTML>
 // e.g.  <HEAD>
 // e.g.   <TITLE>
 // e.g.   </TITLE>
 // e.g.  </HEAD>
 // e.g.  <BODY
 // e.g.    onLoad='
 // e.g.     PROCInternetViewWebPageModifiedLastDateTime(); // gives e.g. ... ""
 // e.g.    '
 // e.g.  >
 // e.g.  </BODY>
 // e.g. </HTML>
 var s = "";
 var taghtmlbeginS = "<";
 var taghtmlendS = ">";
 document.write( taghtmlbeginS + "TABLE" );
 document.write( "  " + "ALIGN='center'" );
 // document.write( '  style=width:' + 0.935 * screen.width + "px" );
 document.write( taghtmlendS );
 document.write( taghtmlbeginS + "TR" + taghtmlendS );
 document.write( taghtmlbeginS + "TD" + taghtmlendS );
 document.write( taghtmlbeginS + "FONT SIZE='1'" + taghtmlendS );
 s = "last modified on:" + " " + document.lastModified;
 document.write( s );
 document.write( taghtmlbeginS + "/FONT" + taghtmlendS );
 document.write( taghtmlbeginS + "/TD" + taghtmlendS );
 document.write( taghtmlbeginS + "/TR" + taghtmlendS );
 document.write( taghtmlbeginS + "/TABLE" + taghtmlendS );
}
<!-------------------------------------------------------------------->
<!-- library: Google: Analytics [kn, ri, sa, 24-06-2006 15:01:22] -->
function PROCGoogleAnalytics() {
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<!--- [*GOOGLE: ANALYTICS: BEGIN] ------------------------------------>' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<' + 'SCRIPT' );
// document.write( '  TYPE="text/javascript"' );
// document.write( '  SRC="http://www.google-analytics.com/urchin.js"' );
// document.write( '>' );
// document.write( '<' + '/' + 'SCRIPT' + '>' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<' + 'SCRIPT' );
// document.write( '  TYPE="text/javascript"' );
// document.write( '>' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '_uacct = "UA-406706-1";' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( 'urchinTracker();' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<' + '/' + 'SCRIPT' + '>' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<!-------------------------------------------------------------------->' );
// document.write( '<!--- [*GOOGLE: ANALYTICS: END] -------------------------------------->' );
// document.write( '<!-------------------------------------------------------------------->' );
}
<!-------------------------------------------------------------------->
