// JavaScript Document
function toggle_div(id){
	if(document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = '';
	} else {
		document.getElementById(id).style.display = 'none';
	}
}
function toggle_div2(id_1,id_2,method){
	if(method == 'open'){
		document.getElementById(id_1).style.display = 'none';
		document.getElementById(id_2).style.display = '';
	} else {
		document.getElementById(id_1).style.display = '';
		document.getElementById(id_2).style.display = 'none';
	}
}

function printpage(divding){
	var tekst = document.getElementById(divding).innerHTML;
	window.iframenaam.document.close();
	window.iframenaam.document.open();
	window.iframenaam.document.write(tekst);
	parent.iframenaam.document.execCommand('print');
}

/*
function printpage(divding){
	var tekst = document.getElementById(divding).innerHTML;
	window.iframenaam.document.close();
	window.iframenaam.document.open();
	window.iframenaam.document.write('<html><head><title>De Eetkamer</title>'); 
	window.iframenaam.document.write('<link rel="stylesheet" href="print.css" type="text/css" media="screen" />'); 
	window.iframenaam.document.write('<style>body{ margin:10px; background-color:#FFFFFF; background-image:url(); }</style>'); 
	window.iframenaam.document.write('</head><body onLoad=\"self.print()\">');
	window.iframenaam.document.write(tekst);
	window.iframenaam.document.write('</body></html>');
	parent.iframenaam.document.execCommand('print');
}
*/



function page_print_div(totaal){
	var docprint=window.open('','','scrollbars=yes,width=600, height=400, left=100, top=25'); 
	docprint.document.open(); 
	docprint.document.write('<html><head><title>De Eetkamer</title>'); 
	docprint.document.write('<link rel="stylesheet" href="print.css" type="text/css" media="screen" />'); 
	docprint.document.write('<style>body{ margin:10px; background-color:#FFFFFF; background-image:url(); }</style>'); 
	docprint.document.write('</head><body onLoad=\"self.print()\">');
	for(i=0; i<totaal; i++){
		docprint.document.write(document.getElementById('pc_menukaart_titel_'+i).innerHTML);
		docprint.document.write(document.getElementById('pc_menukaart_inhoud_'+i).innerHTML);
		docprint.document.write('<br><br>'); 
	}
	docprint.document.write('</body></html>'); 
	docprint.document.close(); 
	docprint.focus(); 
}

