

function printWin(title) {
	var RTETitle = title;
	var RTEContent = document.getElementById("RTEContent").innerHTML;
	pwin = open("","printWindow","width=795,height=530,left=10,top=10,scrollbars=yes,resizable=yes");
	pwin.document.open();
	pwin.document.write('<html><head><title>Scouting Dr. Ariensgroep :: '+RTETitle+'</title>');
	pwin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	pwin.document.write('<link href="/Static/Include/default.css" rel="stylesheet" type="text/css">');
	pwin.document.write('<body bgcolor=\"#fdfce8\" onLoad="window.print();window.close()">');
	pwin.document.write('<table width="100%" border="0" cellpadding="4" cellspacing="0">');
	pwin.document.write('	<tr>');
	pwin.document.write('		<td width="100%" height="20" class="RTETitle" nowrap>');

	pwin.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="450" height="30" id="titel" align="middle">');
	pwin.document.write('	<param name="allowScriptAccess" value="sameDomain" />');
	pwin.document.write('	<param name="movie" value="/Static/include/titel.swf?titel='+RTETitle+'" />');
	pwin.document.write('	<param name="quality" value="high" />');
	pwin.document.write('	<param name="bgcolor" value="#fdfce8" />');
	pwin.document.write('	<embed src="/Static/include/titel.swf?titel='+RTETitle+'" quality="high" bgcolor="#fdfce8" width="450" height="30" name="titel" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
	//pwin.document.write(RTETitle);
	pwin.document.write('		</td>');
	pwin.document.write('	</tr>');
	pwin.document.write('	<tr>');
	pwin.document.write('		<td valign="top" class="RTEDefault">');
  	pwin.document.write(RTEContent);
	pwin.document.write('		</td>');
	pwin.document.write('	</tr>');
	pwin.document.write('</table>');
	pwin.document.write('</body></html>');
	pwin.document.close(); 
}


