function ShowMeMore(picURL,picTitle,picText)
		{
		newWindow=window.open(picURL,'newWin','toolbar=no,width=507,height=408')
		newWindow.document.write('<html><title>'+picTitle+'<\/title><head><\/head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" bgcolor="#FEFFE0"><table border="1" width="100%"><tr><td align="center"><img src="'+picURL+'" alt="'+picText+'" onclick="window.close();"><\/td><\/tr><\/table><\/body><\/html>')
		newWindow.focus()
		}

function ShowMeMoreTstmnls(picURL,picTitle,picText,vWidth,vHeight)
		{
		var pWidth = vWidth;
		var pHeight = pHeight;
		newWindow=window.open(picURL,'newWin','toolbar=no,width='+pWidth+',height='+pHeight)
		newWindow.document.write('<html><title>'+picTitle+'<\/title><head><\/head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" bgcolor="#FEFFE0"><table border="0" width="100%"><tr><td align="center"><img src="'+picURL+'" alt="'+picText+'" onclick="window.close();"><\/td><\/tr><\/table><\/body><\/html>')
		newWindow.focus()
		}

