<!--
var image = new Array(10);
image[0]='custom/0.jpg';
image[1]='custom/1.jpg';
image[2]='custom/2.jpg';
image[3]='custom/3.jpg';
image[4]='custom/4.jpg';
image[5]='custom/5.jpg';
image[6]='custom/6.jpg';
image[7]='custom/7.jpg';
image[8]='custom/8.jpg';
image[9]='custom/9.jpg';

function CustImg(){
	var date=new Date();
	var sec=date.getSeconds();
	i = sec%10;
	document.getElementById('astro').src=image[0];
}

function navigate(n){
	if (n.substring((n.length-4),(n.length))==".pdf") {
		window.location='download/'+n;
		return;
	}
	else {
	document.getElementById('menu').url.value=n;
	document.getElementById('menu').submit();
	return;
	}
}

function navigate2(n){
	document.getElementById('menu').language.value=n;
	document.getElementById('menu').submit();
}
function an(v){
	document.getElementById('news').all.value=v;
	document.getElementById('news').submit();
}
function gallery(al){
	document.album.index.value=al;
	document.album.submit();
}
function sMT(name, company, domain) {
	locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
	window.location.replace(locationstring);
}
//-->