function switchMe(target, method)
	{
		targetObj = document.getElementById(target);
		
		fileName = 'nav/' + target + '_' + method + '.gif';
		
		targetObj.src = fileName;
	}
	
function newWindow(url, windowName) 
{
popupWin = window.open(url, name, 'menubar=no, status=no, toolbars=no, resizable=yes, scrollbars=yes, width=800, height=600, screenX=50, left=50, screenY=50, top=50');
popupWin.focus();
}

function newWindow1(url, windowName) 
{
popupWin = window.open(url, name, 'menubar=no, status=no, toolbars=no, resizable=no, scrollbars=no, width=853, height=480, screenX=50, left=50, screenY=50, top=50');
popupWin.focus();
}