
function OpenWindow(url, naam, features)
{
hoogte = screen.availHeight -28;
breedte = screen.availWidth -10;
features = features +',top=0,left=0,height='+hoogte+',width='+breedte;
handle = window.open(url, naam, features);
window.opener=null;
/*window.close();*/
}



