// JavaScript Document
function printenmaar()
{
	var a = window.open('','','');
	a.document.open("text/html");
	a.document.write('<html><head>');
	a.document.write('<link rel="stylesheet" href="../style/print.css" />');
	a.document.write('</head><body>');
	a.document.write('<p class="titel_kop"><strong>http://www.kabellaskonings.nl/</strong></p>');
	a.document.write('<p>De Heinen 4,<br>');
	a.document.write('Industrieterrein “De Bulk”<br>');
	a.document.write('5371 MJ Ravenstein<br>');
	a.document.write('Telefoon: 0486 41 43 95<br>');
	a.document.write('Fax: 0486 41 41 8<br>');
	a.document.write('Email: info@glasvezeltechniek.nl</p>');	
	a.document.write('<p class="text"><img border="0" src="images/logo_printen.jpg"></p>');	
	a.document.write(document.getElementById('print').innerHTML);
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}

function mouseOver(id,image)
{
document.getElementById(id).src=image;
}

function mouseOut(id,image)
{
document.getElementById(id).src=image;
}

function mouseClick(id,image)
{
document.getElementById(id).src=image;
}
