var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=500,resizable=false,directories=false,toolbar=false,status=no,scrollbars=false,menubar=false');
	if (window.focus) {newwindow.focus()}
}

function buttonHover(oEl,state){
if (state == '1'){
	oEl.firstChild.style.backgroundImage = "url('../images/v2/buttonSel.gif')"
		}else{
		oEl.firstChild.style.backgroundImage = "url('../images/v2/button.gif')"
	}
}

