
///////////////////////////
//		print a div
///////////////////////////
///////////////////////////
//		print a div
///////////////////////////
function printDiv(id) {
	var win = openPopUp('print.html', 600, 400, ',resizable, scrollbars');

	win.document.open();
	win.document.writeln('<head><title>suncontrol.de - Drucken</title><link href="edit.css" rel="stylesheet" type="text/css"></head>');
	win.document.writeln('<body bgcolor="#ffffff" style="margin: 0px; padding: 0px; font-family: arial;" onload="window.print();">');
	//win.document.writeln('<div style="text-align: right; background-color: #00EE00;"><strong>Klicken Sie hier, um die Seite zu drucken</strong> <a href="javascript: window.print();"><img src="bilder-fw/druckbutton_fcn.gif" border=0></a></div>');
	win.document.writeln('<div style="margin: 10px;">');
	win.document.writeln(document.getElementById(id).innerHTML);
	win.document.writeln('</div></body></html>');
	win.document.close();
}

///////////////////////////
//		PopUps
///////////////////////////
function openPopUp(url, w, h, sonst) {
	var settings = 'height=' + h + ',width=' + w + ',top=10,left=10' + sonst;
	var win = window.open(url,"NewWin",settings);

	return win;
}
