<!--

function popupDim(x, w, h ) {
	if ( h == null ) 
		h = 300;
	if ( w == null ) 
		w = 300;
	newWindow = window.open(x,'popDim','width='+w+',height='+h+',resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=0,toolbar=0,addressbar=0');
//	var winsizeY = screen.height;
//	newWindow = window.open(x,'popDim','width='+w+',height='+winsizeY+',resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=0,toolbar=0,addressbar=0');
//	var winposX = (screen.width - w);
	var winposX = (screen.availWidth - w);
	newWindow.moveTo(winposX,0);
	return true;
}

function popupGal(x, w, h ) {
	if ( h == null ) 
		h = 300;
	if ( w == null ) 
		w = 300;
	newWindow = window.open(x,'popGal','width='+w+',height='+h+',resizable=1,locationbar=0,menubar=0,personalbar=0,scrollbars=1,toolbar=0,addressbar=0');
	return true;
}

function popup(x) {
	newWindow = window.open(x,'pop','width=315,height=700,resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=1,toolbar=0,addressbar=0');
//	var winsizeY = screen.height;
//	newWindow = window.open(x,'pop','width=310,height='+winsizeY+',resizable=0,locationbar=0,menubar=0,personalbar=0,scrollbars=1,toolbar=0,addressbar=0');
	newWindow.moveTo(0,0);
}

function swap(slot,imgName) {
	if ( ! document.images)
		return;
	document.images[slot].src=imgName;
}

//-->
