function swapimg(imgID, newImg){
	if(document.images){
	document[imgID].src = eval(newImg + '.src')
	}
}

function mailWin(url){
	newWindow = window.open(url, 'Email', 'resizable,width=200,height=330')
	newWindow.focus()
}

function termsWin(url){
	window.name = 'Main'
	newWindow = window.open(url, 'popup', 'scrollbars,resizable,dependent,width=288,height=240,left=10,top=10')
	newWindow.focus()
}

function dtlWin(url){
	window.name = 'Details'
	newWindow = window.open(url, 'popup', 'scrollbars,resizable,dependent,width=630,height=470,left=5,top=5')
	newWindow.focus()
}

function popup(mylink, windowname, w, h){
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	newPop = window.open(href, windowname, 'width=' + w + ',height=' + h + ',left=20,top=20,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');
	newPop.focus();
	return false;
}