function openBigGraph(key, hubName) {
  var opt = 'width=488; height=347; location=no; resizable=no; menubar=no; scrollbars=no; status=no; titlebar=no; toolbar=no;';
	var win = window.open('', hubName.replace(' ', ''), opt);
  win.resizeTo(488,347);
	var img = 'index.php?view=img&size=big&key='+key;
	var js = 'index.php?view=js&size=big&key='+key;
	
	var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">';
	html+='<html>';
	html+='<head>';
	html+='  <title>'+hubName+' - Vergroting</title>';
	html+='  <link rel="stylesheet" type="text/css" href="layout/default/style.css">';
	html+='</head>';
	html+='<body style="margin: 0px; background-color: #FFF; background-image: none;">';
	html+='<img src="'+img+'" usemap="#nav" style="border: 0px none;" />';
	html+='<map id="nav" name="nav"></map>';
	html+='<script src="'+js+'" type="text/javascript" ></script>';
	html+='</body>';
	html+='</html>';

	win.document.write(html);
}