// declare some varaibles
var newWin;

function SwapFont(strCell, strFontname)
{
	document.all.item(strCell).className = strFontname;
}

function URLRedirect(strURL)
{
	document.location.href = strURL;
}
function OpenGalleryWindow(intWidth, intHeight, strImageSize, strImageName, strName)
{
	if (newWin != null)
	{
		newWin.close();
	}
	var srtURL;
	var strOptions;
	strURL = "GalleryViewer.aspx?size=" + strImageSize + "&Name=" + strName + "&Image=" + strImageName
	strOptions = "toolbar=no, resize=no, width=" + intWidth + ", height=" + intHeight;
	newWin = window.open(strURL, "", strOptions);
}
