

function hideOp(obj,name)
{
	obj.src= "/images/" + name + "-in.gif";
}

function showOp(obj,name)
{
	obj.src= "/images/" + name + "-out.gif";
}

function Grow(obj) {
	curSize = eval(obj.style.fontSize.substring(0,content.style.fontSize.length - 2));
	if( curSize < 16 )
		newSize = curSize + 1 + "pt";
	obj.style.fontSize = newSize;
}


function Shrink(obj) {
	curSize = eval(obj.style.fontSize.substring(0,content.style.fontSize.length - 2));
	if( curSize > 8 )
		newSize = curSize - 1 + "pt";
	obj.style.fontSize = newSize;
}


function ShowPhoto( strName, strSet, strLink, strWidth, strHeight, strBG)
{
	myWin = window.open( "", strLink, "width=" + strWidth + ", height=" + strHeight + ", location=no, scrolling=no, toolbar=no, menubar=no, status=no");
	myWin.document.write("<html><head><title>Photo</title></head>");
	myWin.document.write("<body bgcolor='" + strBG + "' onclick='javascript:window.close()'>");
	myWin.document.write("<img src='/images/issue" + strSet + "/"+strLink+".jpg' border=1>");
	myWin.document.write("</body></html>");
}

