//hier kunnen specifieke websitefuncties toegevoegd worden
function ToonAanbod(Tabel,Id, iPrint, iClose, iPDF) 
{
	if (Id == "")
	{
		return false;
	}
if('undefined' == typeof iPrint) iPrint = 0;
if('undefined' == typeof iClose) iClose = 0;
if('undefined' == typeof iPDF) iPDF = 0;
var left = screen.width-(600+20) ;
if (MyFloater) MyFloater.close();
MyFloater=window.open("/toonaanbod.php?tabel="+Tabel+"&id="+Id+"&print="+iPrint+"&close="+iClose+"&pdf="+iPDF,"portfolio","resizable=1,width=600,height=700,left=" + left + ",top=100");
if (MyFloater.opener == null) MyFloater.opener = self;
}

function toonGlyph()
{
	var left = screen.width-200 ;
	naam = document.getElementById('glyph').value;
	if (naam)
	{
		MyFloater=window.open("/toonglyphs.php?naam="+naam,"glyph","width=180,left=" + left+",top=100");
		if (MyFloater.opener == null)
		{
			MyFloater.opener = self;
		}
	}
}

