<!--
function openUrl ( url , width , height , titel ) {
	if( width == null ) { width = 600; }
	if( height == null ) { height = 400; }
	if( titel == null ) { titel = 'COMFIRM'; }
	var properties = 'scrollbars=yes,resizable=no,screenX=0,screenY=0,top=0,left=0,width=' + width + ',height=' + height;
	w = window.open( url ,titel, properties );
	w.focus();
}

function openPopup ( img ) {
  w = window.open( '/image.php?' + img,'detail','scrollbars=no,resizable=no,screenX=0,screenY=0,top=0,left=0'  );
  w.focus();  
}

function openSiteMap( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/sitemap.php", "CFSiteMap", properties );
}

function openContractWh( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/contracten/webhosting.php", "CFContractHosting", properties );
}

function openAUP( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/contracten/aup.php", "CFAUP", properties );
}

function openContractDn( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/contracten/domeinnamen.php", "CFContractDomeinnamen", properties );
}

function openPrivacy( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/contracten/privacy.php", "CFPrivacy", properties );
}

function openDisclaimer( )
{	
	var properties = "left=100,top=100,width=638,height=478,scrollbars=yes,resizable=no";
	window.open ( "/contracten/disclaimer.php", "CFDisclaimer", properties );
}

// -->