function destination (ID) {

	var url = '';
	var text = '';
	var home = 'band';
	var worldwideweb = 'http://www.';
	var NL = '.nl';
//	home = worldwideweb + home + NL;
	
// MENU
	if (ID == 'home') {
		url = 'index.pl';
		text = 'Home';

	} else if (ID == 'about') {
		url = 'index.pl?p=about';
		text = 'Over Band.nl';
	
	} else if (ID == 'works') {
		url = 'index.pl?p=works';
		text = 'Hoe het werkt';
	
	} else if (ID == 'contact') {
		url = 'index.pl?p=contact';
		text = 'Contact & Info';
	
	}  else if (ID == 'links') {
		url = 'index.pl?p=links';
		text = 'Links';
	
	} else if (ID == 'aanmelden') {
		url = 'index.pl?p=subscribe';
		text = 'Aanmelden Bands';
	
	} else if (ID == 'readmore') {
		url = 'index.pl?p=search';
		text = ' lees meer...';
	
	
	}




	document.write 

//	( '<a href="', worldwideweb, home, NL, "/", url, '"', ' onmouseover="window.status=\'Band\';return true;"', ' onmouseout="window.status=\'\'; return true;"' +'">', text , '</a>' );
	( '<a href="', url, '"', ' onmouseover="window.status=\'Band\';return true;"', ' onmouseout="window.status=\'\'; return true;"' +'">', text , '</a>' );


}


