function open_employee(gohere)
{
window.open(gohere, "employee", config="height=400,width=500,scrollbars=yes,resizable=yes,menubar=yes,toolbar=no,top=0,left=0");
}

function PrintThis(url)
{
	var tmp = document.getElementById('content_wrapper').innerHTML;
	var tmpOther = document.getElementById('trail').innerHTML;
	
	OpenWindow=window.open("untitled.html", "newwin", config="height=400,width=500,scrollbars=yes,resizable=yes,menubar=yes,toolbar=no,top=0,left=0");
	OpenWindow.document.write("<html><body><head><title>Rembolt Ludtke</title><link rel='stylesheet' type='text/css' href='print.css' />")

	OpenWindow.document.write("</head>");
	OpenWindow.document.write("<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bgcolor='#f9ffc1'>");
	
	OpenWindow.document.write("<table width='100%' height='100%' cellpadding='0' cellspacing='0' border='0'>");
	OpenWindow.document.write("<tr><td rowspan='2' width='48px;' valign='top' style='background:url(../aimages/popup_left_bg.gif) repeat-y;'><img src='../aimages/popup_background_01.gif' /></td>");
	OpenWindow.document.write("<td height='46px' valign='top' style='background:url(../aimages/popup_top_bg.gif) repeat-x;'><img src='../aimages/popup_background_02.gif' /></td>");
	OpenWindow.document.write("</tr><tr><td valign='top' style='background:url(../aimages/popup_background_04.gif) no-repeat;'>");
	OpenWindow.document.write("<div class='title'>");
	OpenWindow.document.write(tmpOther);
	OpenWindow.document.write("</div>");
	OpenWindow.document.write("<div class='content'>");
	OpenWindow.document.write(tmp);
	OpenWindow.document.write("</div><br />");
	var d = new Date();
	OpenWindow.document.write("<div class='footer'>&copy;" + d.getFullYear() + " Rembolt Ludtke LLP. All rights reserved.</div>");
	OpenWindow.document.write("</td></tr></table>");
	
	OpenWindow.document.write("</body>")
	OpenWindow.document.write("</html>")
	
	 OpenWindow.document.close()
	self.name="main"
}