// JavaScript Document

/* zoek textbox legen bij onclick */
function LeegZoekstring()
    {
     document.getElementById('txt_Zoek').value='';				   
							   
    }
    
    
function startPrinting()
{
	var text = window.location.search.substring(1);
    if (text.length > 0)
    {
		strUrl="toPrint.aspx?" + text;
    } else {
		strUrl="toPrint.aspx";
    }
    var intWindowHeight = 10;
	var intWindowWidth = 10;
	var intWindowX = 6000;
	var intWindowY = 6000;
	window.showModalDialog(strUrl,null,"dialogHeight: "+intWindowHeight+"px; dialogWidth: "+intWindowWidth+"px; center: no; help: no; resizable: no; status: no; screenX: "+intWindowX+"; screenY: "+intWindowY+"; left: "+intWindowX+"; top: "+intWindowY+";");
}