function writeHeader() {
//this function writes the HTML code for silviabrasil.com website HEADER area for ALL pages
var str = "<table width=\"750\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
	str += "<tr><td class=\"bevel\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=5 width=750></td></tr>";
	str += "<tr><td class=\"pinkbg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=6 width=750></td></tr>";
	str += "<tr><td class=\"whitebg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=2 width=750></td></tr>";
	str += "</table>";
	
	return str;
}

function writeContentsHeader() {
	//this function writes the HTML code for silviabrasil.com website HEADER area for CONTENT pages only
	var str = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"maintable\" width=750>";
	str += "<tr><td width=170><a href=\"http://www.silviabrasil.com/index.html\"><img src=\"http://www.silviabrasil.com/2005/images/chilliweb_logo.jpg\" border=0 alt=\"Home Page\"></a></td>";
	str += "<td width=352><a href=\"http://www.silviabrasil.com/index.html\"><img src=\"http://www.silviabrasil.com/2005/images/logo60.jpg\" border=0 alt=\"Home Page\"></a></td>";
	str += "<td>&nbsp;</td></tr>";
	str += "</table>";

return str;
}

function writeFooter() {
//this function writes the HTML code for silviabrasil.com website FOOTER area
var str = "<table width=\"750\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
	str += "<tr><td class=\"bevel\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=5 width=750></td></tr>";
	str += "<tr><td class=\"whitebg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=2 width=750></td></tr>";
	str += "<tr><td class=\"pinkbg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=18 width=750></td></tr>";
	str += "<tr><td class=\"whitebg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=2 width=750></td></tr>";
	str += "<tr><td class=\"yellowbg\"><img src=\"http://www.silviabrasil.com/2005/images/0.gif\" height=18 width=750></td></tr>";
	str += "</table>";
	/* copywrite stuff */
	str += "<table width=\"750\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
	str += "<tr><td class=\"footer\" align=center height=45 valign=bottom>&copy; <a href=\"mailto:contact@silviabrasil.com\">silviabrasil.com</a> - All rights reserved. <BR> Prohibited the use or reproduction of any content from <BR> this website without previous authorisation.</td></tr>\n</table>";
	
	return str;
}
