// JavaScript Document
// Laver sectionFrame mindre (husk at ændre den tilbage når der skiftes sektion)
function iFrameStr(w,h) {
document.getElementById('sectionFrame').width = w
document.getElementById('sectionFrame').height = h
}
// Ændrer src på indholdet af iFrame
function loadIndhold(text,section) {
frames['mainText'].location.href = text;
      frames['sectionFrame'].location.href = section;
}
<!-- Alle kaldes fra Flash menuen. OBS!: Læg altid 54 til nummeret på WORK siderne nedenfor (så der bliver tom plads til højre) - (655 x antal projekter i kategori) + 54.
function loadNews() {
	loadIndhold('html/main_text/main_text_news.html','html/work_index_featured.html');
	iFrameStr('709','800')
}
function loadAbout() {
	loadIndhold('html/main_text/main_text_about.html','html/blank.html');
	iFrameStr('623','800')
}
function load2007() {
   loadIndhold('html/main_text/main_text_work_2007.html','html/work_index_2007.html');
	iFrameStr('2674','800')
}
function load2006() {
   loadIndhold('html/main_text/main_text_work_2006.html','html/work_index_2006.html');
	iFrameStr('2674','800')
}
function load2005() {
   loadIndhold('html/main_text/main_text_work_2005.html','html/work_index_2005.html');
	iFrameStr('6604','800')
}
function load2004() {
   loadIndhold('html/main_text/main_text_work_2004.html','html/work_index_2004.html');
	iFrameStr('5949','800')
}
function loadOlder() {
   loadIndhold('html/main_text/main_text_work_older.html','html/work_index_older.html');
	iFrameStr('5294','800')
}
function loadPhotos() {
loadIndhold('html/main_text/main_text_photos.html','html/photos.html');
	iFrameStr('623','800')
}
function loadContact() {
	loadIndhold('html/main_text/main_text_contact.html','html/contact.html');
	iFrameStr('623','800')
	}
// -->