// JavaScript Document

function swapImage(imgN,imgU){
if(document.images)document.images[imgN].src=imgU;
}

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=650,width=900,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
