// Title Bar Code



//////////////////////////////////////////////////////////////////////////////////////
//Dave 24/ 08/08
// Title Bar Class uses Style class="mtitle_bar" and places it in the DIV as positioned by 
// the HTML page
//
function title_bar(  ) 
{

    this.xpos = 0;
    this.ypos = 0;
    this.w =    330
    this.h =    20;
    this.title = document.title; // this is the title of the main page 

    document.write (
		'<a id=     "Title_Bar"'                   // title for this item
	              +'class="mtitle_bar"'                   // Define our class
		      +'style="position: absolute; top: ' + this.ypos + 'px;left: ' + this.xpos +'px; width: '
		      + this.w + 'px; height: ' + this.h + 'px; z-index: 4;'
		      +'" >'
		      +'<div class="mtitle_bar" name="title_bar"> '+ this.title+' </div></a>\n'

	);
}



