<!--

function swap(slot,imgName) {
	if ( ! document.images)
		return;
	document.images[slot].src=imgName;
}

function popup(x, w, h ) {
	if ( h == null ) 
		h = 300;
	if ( w == null ) 
		w = 300;
	newWindow = window.open(x,'popnew','width='+w+',height='+h+',resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=0,toolbar=0,addressbar=0');
	return true;
}

function popuptxt(x, w, h ) {
	if ( h == null ) 
		h = 300;
	if ( w == null ) 
		w = 300;
	newWindow = window.open(x,'popnew','width='+w+',height='+h+',resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=auto,toolbar=0,addressbar=0');
	return true;
}

//-->