function swapImg( id, src )
{
	document.getElementById ( id ).src = src;	
}

function view_and_scroll( url, width, height, name )
{
	popupWin = window.open(url, name, 'scrollbars=auto,menubar=no,toolbar=no,width='+ width +',height='+ height +',left=80,top=40');
}