//Sets favicon.ico
function favicon(){
var icon = "";
 icon = "<LINK REL=SHORTCUT ICON HREF=http://www.members.cox.net/trumpet/favicon.ico>";

document.write(icon);
   document.close();
   }


//Sets Copyright
function Copyright(){
var TEXT = "";

TEXT = "<div align=center><p style=margin-top: 25px><font face=Arial size=1> Copyright © 2009 Eric's Trumpet Services.&nbsp; All rights reserved.</font></div>"

document.write(TEXT);
   document.close();
   }

//Sets body layout color and backgound
function backgound(){
var BACKGRND = "";

BACKGRND = "<body bgcolor=#FFFFEA topmargin=25 leftmargin=50 rightmargin=50 bottommargin=25 marginwidth=3 marginheight=3 background=images/Background.jpg>";

document.write(BACKGRND);
   document.close();
}


//Sets main table color
function tablecolor(){
var COLOR = "";

COLOR = "<table border=1 cellpadding=1 cellspacing=5 width=768 bgcolor=#FFFFEA id=table11>";
document.write(COLOR);
   document.close();
}