function optOn(){
	this.parentNode.style.backgroundImage = 'url(images/reg_bg.jpg)';
}

function optOff(){
	this.parentNode.style.backgroundImage = '';
}

function menuChng(src){
	switch(src){
		case '1':
		document.getElementById('lst1').className = 'active';
		break;
		case '2':
		document.getElementById('lst2').className = 'active';
		break;
		case '3':
		document.getElementById('lst3').className = 'active';
		break;
		case '4':
		document.getElementById('lst4').className = 'active';
		break;
		case '5':
		document.getElementById('lst5').className = 'active';
		break;
	}
		
}

function chngBG(src){
	if(	document.getElementById(src).className == ''){
		document.getElementById(src).className = 'on';
	}
	else{
		document.getElementById(src).className = '';
	}
}



    function openWindow(url){
    newwindow=window.open(url, "ApplicationForm", "location=0,status=0,scrollbars=1,resizable=1,menubar=0, width=1, height=1");
    if (window.focus) { newwindow.focus() }
    }
