function TarievenDetails(id)
{
	var link = "tarieven-details.php?id=" + id;
    window.open(link, "popup", "width=480,height=320,status=no,toolbar=no,resizeable=no");
}

function ShowPic(id)
{
	width = 800;
	height = 600;
	x = (screen.width - width) / 2;
	y = (screen.height - height) / 2;
	link = "showpic.php?id=" + id;
    window.open(link, "popup", "left="+x+",top="+y+",width="+width+",height="+height+",resizable=yes, width=800, height=600");
    //status=no,toolbar=no,resizeable=yes");
}

