function showWin(theURL, theWidth, theHeight) 
{ 
	psWindow = open(theURL, "galleryWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + theWidth + ",height=" + theHeight); 
	if (psWindow.focus) 
		psWindow.focus(); 
	return false; 
}