// c = link to content
// m = menu pointer
// sm = submenu pointer;

function loadtwopages(c,m,sm) {
	// convert location object to string
	var urlstr = new String (parent.location);

	// if URL contains the word "flash"
	if (urlstr.indexOf ("flash") != -1) {
		var navpointer = 'http://www.medientage-muenchen.de/nav_flash.php?' + "m=" + m + "&sm=" + sm;
		parent.nav.location.href = navpointer;
		parent.content.location.href = c;
	// this refers to the html navigation
	} else {
		parent.content.location.href = c;
	}
}
