function SwapImage(imageObj, newImageSource)
{
	var imageRoot = "/images/DIF_ES/";
	imageObj.src = imageRoot + newImageSource
}

function popup(url)
{
	var new_win;
	var features =
		'width=' + 800 + ',' +
		'height=' + 550 + ',' + 		
		'top=' + 10 + ',' +
		'left=' + 10 + ',' +
		'toolbar=' + 1 + ',' +
		'location=' + 1 + ',' +
		'statusbar=' + 1 + ',' +
		'menubar=' + 1 + ',' +
		'resizable=' + 'yes' + ',' +
		'scrollbars=' + 1;
	new_win = window.open(url, 'NewWindow', features);
	new_win.focus();
}

function popupB(url)
{
	var new_win;
	var features =
		'width=' + 800 + ',' +
		'height=' + 550 + ',' + 		
		'top=' + 10 + ',' +
		'left=' + 10 + ',' +
		'toolbar=' + 0 + ',' +
		'location=' + 0 + ',' +
		'statusbar=' + 0 + ',' +
		'menubar=' + 0 + ',' +
		'resizable=' + 'yes' + ',' +
		'scrollbars=' + 1;
	new_win = window.open(url, 'NewWindow', features);
	new_win.focus();
}
