function FormWin(){
	var iWin = window.open("http://www.nasa.de/blank.htm", "INSA", "resizable=yes,scrollbars=yes,menubar=no,toolbar=yes,status=no,width=795,height=500,left=0,top=0");
	//iWin.focus();
	return true;
}

function formfocus(element) {
	element.style.color='#FFFFFF';
	element.style.background='#003368';
}
function formblur(element) {
	element.style.color='#000000';
	element.style.background='#CCCCCC';
}

