function createPart1() {
	document.writeln("<head>");
	document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1252\">");
	document.writeln("<meta http-equiv=\"imagetoolbar\" content=\"false\">");
	document.writeln("<title>Landesjugendorchester Rheinland-Pfalz - ");
	document.writeln(PageTitle);
	document.writeln("</title>");
	document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"styles/default.css\">");
	document.writeln("<link rel=\"SHORTCUT ICON\" href=\"favicon.ico\">");
	document.writeln("</head>");
	
	document.writeln("<body id=\"rightframe\">");
	
	// Outer Table
	document.writeln("<table cellspacing=\"0\" cellpadding=\"0\"><tr>");
	
	// Navigation Column Table
    document.writeln("<td style=\"vertical-align: top\">");
    document.writeln("<table cellspacing=\"0\" cellpadding=\"0\">");

    document.writeln("<tr><td><div class=\"ljologo\">");
    document.writeln("<img src=\"graphics/ljologo170.png\"><br/>");
    document.writeln("</div></td></tr>");
    
    document.writeln("<tr><td><div  name=\"nav\" id=\"nav\" class=\"nav\">");
    
    try {
        document.writeln(placeNavigation(getNr(PageLink)));
	} catch (er) {
		Alert("Navigation not found!");
	}
	
	window.onresize = resize;
	window.onload = resize;
	
    document.writeln("</div></td></tr>");
    
    // LBS Sparkasse 
    document.writeln("<tr><td><br /><img style=\"width:195px;\" alt=\"Die LBS und Sparkassen Rheinland-Pfalz f&ouml;rdern das Landesjugendorchester Rheinland-Pfalz\" src=\"graphics/LBS Sparkasse.png\"/></td></tr>");
    document.writeln("</table>"); // End left column table
    
    document.writeln("</td><td width=\"100%\" style=\"vertical-align: top\">"); // Switch to document side

    // Content Table
	document.writeln("<table width=\"100%\" height=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>");
	document.writeln("<td valign=\"top\">");
	document.writeln("<div width=\"100%\" id=\"content\" class=\"content\">");
	
	if (doPrintTitle) {
		document.writeln("<h1>"+PageTitle+"</h1>");
	}
}

function createPart2() {
	document.writeln("</div>"); // End content div
	    
    document.writeln("</td></tr><tr><td>");
    
    document.writeln("<br/><br/>"); // Ensure minimal distance before logo
    
	document.writeln("<table id=\"toptab\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">");
	document.writeln("<tr>");
	document.writeln("<td width=\"50%\"><p>&nbsp;</p>");
	document.writeln("</td>");
	document.writeln("<td style=\"vertical-align:bottom\"><p><img src=\"graphics/noten2.png\"></img></p>");
	document.writeln("</td>");
	document.writeln("<td width=\"50%\"><p>&nbsp;</p>");
	document.writeln("</td>");
	document.writeln("</tr>");
	document.writeln("</table>"); // End of noten table
	
	document.writeln("</td></tr></table>"); // End of content table
	
	
	
	// End Outer Table
    document.writeln("</td></tr></table>");
	
	document.writeln("</body>");
}

function safeMail(Name, Domain) {
	document.write('\<a href=\"mailto:' + Name + String.fromCharCode(0x40) + Domain + '">');
    document.write(Name + String.fromCharCode(0x40) + Domain + '</a>');
}


