function resize(){
	if(document.getElementById('content').offsetHeight<435){
		document.getElementById('content').style.height="435px";
	}
}

function doPrint(text,title) {
	text = document.getElementById(text).innerHTML;
	
	text = "<html><head><title>JobAssistance -"+title+" - Printvriendelijke versie</title><link rel=\"stylesheet\" href=\"css/styleprint.css\"></head><body><br><img src=\"/img/JobAssistanceLogo.gif\" style=\"float:left;\"><div style=\"margin-left:340px; margin-top:-5px; color:#908e8e; font-size:10px;\">Maidstone 8 (bedrijventerrein T58)<br>5026 SK Tilburg<br>T: 013 - 88 00 780<br>F: 013 - 88 00 788<br><a href=\"mailto:info@jobassistance.nl\">info@jobassistance.nl</a></div><div style=\"margin:20px; clear:both;\">"+text+"</div></body></html>";

	printWin = window.open('','','width=700,height=600,scrollbars=yes,resizable=yes,titlebar=0');
	printWin.document.write(text);
	printWin.document.close();
	printWin.print();
}