/**
 * @author fred
 */
var cInput;
cInput = new Array();

function clearInput(id, box){
    if (cInput[id] != 'OK') {
        box.value = '';
        cInput[id] = 'OK';
    }
}

function printPage(url) {
	 fenster = window.open(url, "", "width=710,height=400,status=0,scrollbars=1,resizable=0");
	 fenster.focus(); 
}




