// JavaScript Document

function prepareNav() {
//	var mainLinks = document.getElementById('mainLinks');
//	var links = mainLinks.getElementsByTagName('td');
//	
//	for (var i=0; i < links.length; i++) {
//		if (links[i].getElementsByTagName('a').length != 0) {
//			links[i].onmouseover = function() {
//				var base = document.getElementById('base').value;
//				this.style.background = "url('" +base+ "images/nav_bg_ov.jpg') repeat-x";
//			};
//			links[i].onmouseout = function() {
//				this.style.background = "none";
//			};
//			links[i].onclick = function() {
//				hardLink = this.getElementsByTagName('a')[0].getAttribute('href');
//				window.open(hardLink, window.name, '');
//			};
//		}
//	}
}

function nameWindow() {
	if (!window.name) {
		window.name = "noname";
	}
}
