// JavaScript Document
//no selecting
document.onselectstart=new Function('return false');
function ds(e){return false;}
function ra(){return true;}
document.onmousedown=ds;
document.onclick=ra;

function changeButtonState(ref, event){

	if(event == 'over'){

		ref.src = '../images/over_' + ref.name + '.gif';
		ref.style.cursor='pointer';
		
	} else if (event == 'out') {
	
		
		ref.src = '../images/out_' + ref.name + '.gif';
	
	}
	

}

function getURL(url) {

	document.getElementById('content').src = url;

}