function round(number, decimals) {	return Math.round(number * Math.pow(10, decimals)) / Math.pow(10, decimals)}function timestamp(datetime, format) {	format = (format? format: "short")	date = new Date(datetime)	year = date.getFullYear()	months = ["ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic"]	month = months[date.getMonth()]	weekdays = ["domingo", "lunes", "martes", "miecoles", "jueves", "viernes", "sabado"]	weekday = weekdays[date.getDay()]	day = date.getDate()	hour = date.getHours()	meridian = (hour >= 12? "pm": "am")	hour = hour % 12	hour = (hour == 0? 12: hour)	minute = date.getMinutes()	minute = (minute < 10? "0" + minute: minute)	switch(format) {		case "long":	text = day + "-" + month.toLowerCase() + "-" + year + " " + hour + ":" + minute + " " + meridian						break		default:		case "short":	text = day + "-" + month.toLowerCase()						break	}	return text}function split(text) {	words = text.split(' ')	line1 = ''	line2 = ''	for(i = 0, i1=0, i2=0; i < words.length; i++) {		if(line1.length <= line2.length) {			line1 = line1 + (line1.length == 0? '': ' ') + words[i1]			i1++		} else {			line2 = words[words.length - 1 - i2] + (line2.length == 0? '': ' ') + line2			i2++		}	}	return line1 + '<BR>' + line2}function cut(title, len) {	if(title.length <= len) {		return title	} else {		words = title.split(" ")		short_title = ""		for(i = 0; (i < words.length) && (short_title.length + words[i].length + 1 <= len); i++) {			short_title += (" " + words[i])		}		return short_title + "…"	}}function portfolio_thumbnail(portfolio, linked) {	return "<TABLE WIDTH=520 HEIGHT=253 BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=" + portfolio.background_color + "><TR><TD><IMG SRC='../img/corner_top_left_" + portfolio.background_color + ".gif' WIDTH=20 HEIGHT=20 VSPACE=0 HSPACE=0 BORDER=0><IMG SRC='../img/dot_" + portfolio.background_color + ".gif' WIDTH=480 HEIGHT=20 VSPACE=0 HSPACE=0 BORDER=0><IMG SRC='../img/corner_top_right_" + portfolio.background_color + ".gif' WIDTH=20 HEIGHT=20 VSPACE=0 HSPACE=0 BORDER=0><BR></TD></TR><TR><TD WIDTH=520 HEIGHT='100%' ALIGN='center' VALIGN='top'><IMG SRC='../img/corner_top_left_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=460 HEIGHT=10><IMG SRC='../img/corner_top_right_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=480 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  portfolio.thumbnail_background_color + "' STYLE='border:0px'><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR='" + portfolio.text_color + "'><TR><TD><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD ALIGN='center' VALIGN='middle'>" + (linked? "<A HREF='portfolio.html?" + portfolio.id + "'>": "") + "<IMG SRC='../pictures/" + (portfolio.filename? portfolio.filename: portfolio.id + ".jpg") + "' BORDER=0 VSPACE=0 HSPACE=0 WIDTH=456 HEIGHT=180><BR>" + (linked? "</A>": "") + "</TD></TR></TABLE></TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=460 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR><TR><TD><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='left' VALIGN='bottom'><IMG SRC='../img/corner_bottom_left_" + portfolio.background_color + ".gif' WIDTH=20 HEIGHT=20 VSPACE=0 HSPACE=0 BORDER=0></TD><TD WIDTH=480 HEIGHT=20><DIV STYLE='color:" + portfolio.thumbnail_text_color + "; text-align:center; font-size:15px; font-family:arial,sans-serif; font-weight:bold; line-height:17px; font-style:regular; padding:5px 0px 5px 0px'>" + (portfolio.title? portfolio.title: "") + "</DIV></TD><TD ALIGN='right' VALIGN='bottom'><IMG SRC='../img/corner_bottom_right_" + portfolio.background_color + ".gif' WIDTH=20 HEIGHT=20 VSPACE=0 HSPACE=0 BORDER=0></TD></TR></TABLE></TD></TR></TABLE>"}function collection_thumbnail(portfolio, collection, linked) {	total = (collection.pictures? collection.pictures.length: 0)	title = collection.title	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0'><TR><TD WIDTH=253 HEIGHT=253 ALIGN='center' VALIGN='middle'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=233 HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=253 HEIGHT=233 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  background_color + "' STYLE='border:0px'><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH='100%'><TR><TD ALIGN='center' VALIGN='middle'><DIV STYLE='padding:0px 0px 0px 0px'><DIV STYLE='color:" + text_color + "; text-align:center; font-size:13px; font-family:helvetica,arial,sans-serif; font-weight:bold; font-style:regular; padding:0px 0px 0px 0px'>" + (collection.title? collection.title: "") + "<BR></DIV></DIV><DIV STYLE='color:" + text_color + "; text-align:center; font-size:10px; font-family:arial,sans-serif; font-style:normal; white-space:nowrap; padding:0px 0px 10px 0px'>" + (collection.type? collection.type: total + " " + (total != 1? "fotograf&iacute;as": "fotograf&iacute;a")) + (collection.period? " (" + collection.period + ")": '') + "<BR></DIV><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 BGCOLOR='" + text_color + "'><TR><TD><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD ALIGN='center' VALIGN='middle'>" + (linked? "<A HREF='" + (collection.url? collection.url: "collection.html?" + portfolio.id + "," + collection.id) + "'>": "") + "<IMG SRC='../pictures/" + (collection.filename? collection.filename: collection.id + ".jpg") + "' BORDER=0 VSPACE=0 HSPACE=0 WIDTH=221 HEIGHT=176><BR>" + (linked? "</A>": "") + "</TD></TR></TABLE></TD></TR></TABLE></TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=233 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function collection_void_thumbnail(portfolio) {	return "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0'><TR><TD WIDTH=253 HEIGHT=253 ALIGN='center' VALIGN='middle'><IMG SRC='../img/corner_top_left_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=233 HEIGHT=10><IMG SRC='../img/corner_top_right_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=253 HEIGHT=233 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  portfolio.thumbnail_background_color + "' STYLE='border:0px'><TABLE><TR><TD></TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=233 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + portfolio.thumbnail_corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function collection_title(portfolio, collection) {	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0'><TR><TD WIDTH=66 HEIGHT=66 ALIGN='center' VALIGN='middle'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=46 HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=66 HEIGHT=46 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  background_color + "' STYLE='border:0px'><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH='100%'><TR><TD ALIGN='center' VALIGN='middle'><DIV STYLE='color:" + text_color + "; text-align:center; font-size:12px; font-family:arial,sans-serif; font-weight:bold; font-style:regular; padding:0px 0px 0px 0px'>" + (collection.title? collection.title: "") + "</DIV></TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=46 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function picture_thumbnail(portfolio, collection, picture, linked, width, height) {	url = "./picture.html?" + portfolio.id + ',' + collection.id + "," + picture.id	if(!width) {		dimension = picture.resolution.split('x')		defaultwidth = dimension[0] * 140 / Math.max(dimension[0], dimension[1])	}	if(!height) {		dimension = picture.resolution.split('x')		defaultheight = dimension[1] * 140 / Math.max(dimension[0], dimension[1])	}	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=" + (width? width + 24: 164) + " HEIGHT=" + (height? height + 24: 164) + "><TR><TD ALIGN='middle' VALIGN='center' BGCOLOR='" +  background_color + "' STYLE='border:0px'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width? width + 4: 144) + " HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=" + (width? width + 4: 144) + " HEIGHT=" + (height? height + 4: 144) + "><TR><TD ALIGN='middle' VALIGN='center'><TABLE BORDER=0 CELLSPACING=2 CELLPADDING=0 BGCOLOR='" + text_color + "'><TR><TD ALIGN='middle' VALIGN='center'>"  + (linked? "<A HREF='" + url + "' STYLE='text-decoration:none; color:" + text_color + "'>": "") + "<IMG SRC='../pictures/"+ (collection.folder? collection.folder + "/": "") + (picture.thumbnail? picture.thumbnail: picture.id + "_tn.jpg") + "' BORDER=0 VSPACE=0 HSPACE=0 WIDTH=" + (width? width: defaultwidth) + " HEIGHT=" + (height? height: defaultheight) + ">" + (linked? "</A>": "") + "</TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width? width + 4: 144) + " HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function picture_void_thumbnail(portfolio, collection, width, height) {	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0'><TR><TD WIDTH=" + (width? width: 164) + " HEIGHT=" + (height? height: 164) + " ALIGN='center' VALIGN='middle'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width? width - 20: 144) + " HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=" + (width? width: 164) + " HEIGHT=" + (height? height - 20: 144) + " BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  background_color + "' STYLE='border:0px'><TABLE><TR><TD></TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width? width - 20: 144) + " HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function picture_title(portfolio, collection, picture) {	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0'><TR><TD WIDTH=66 HEIGHT=66 ALIGN='center' VALIGN='middle'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=46 HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE WIDTH=66 HEIGHT=46 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN='center' VALIGN='middle' BGCOLOR='" +  background_color + "' STYLE='border:0px'><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH='100%'><TR><TD ALIGN='center' VALIGN='middle'>" + (picture.title? "<DIV STYLE='color:" + text_color + "; text-align:center; font-size:9px; font-family:arial,sans-serif; font-weight:bold; font-style:regular; padding:0px 0px 0px 0px'>" + picture.title + "</DIV>":"") + (picture.headline? "<DIV STYLE='color:" + text_color + "; text-align:center; font-size:10px; font-family:arial,sans-serif; font-weight:regular; font-style:regular; padding:0px 0px 0px 0px'>" + picture.headline + "</DIV>": "") + "</TD></TR></TABLE></TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=46 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function pictures(portfolio, collection, picture, width, height, border, color) {	if(!width) {		dimension = picture.resolution.split('x')		defaultwidth = dimension[0] 	}	if(!height) {		dimension = picture.resolution.split('x')		defaultheight = dimension[1]	}	width = (width != null? width: defaultwidth)	height = (height != null? height: defaultheight)	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=520 HEIGHT=520><TR><TD ALIGN='middle' VALIGN='center' BGCOLOR='" +  background_color + "' STYLE='border:0px'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=500 HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=520 HEIGHT=500><TR><TD ALIGN='middle' VALIGN='center'>" + (border != 0? "<TABLE BORDER=0 CELLSPACING=" + (border || border == 0? border: 2) + " CELLPADDING=0 BGCOLOR='" + (color? color: text_color) + "'><TR><TD ALIGN='middle' VALIGN='center'>": "") + "<DIV STYLE='zoom:1; overflow:auto" + (width > 480? "; width:480": "") + (height> 480? "; height:480": "") + "' ALIGN='center'><IMG SRC='../pictures/"+ (collection.folder? collection.folder + "/": "") + (picture.filename? picture.filename: picture.id + ".jpg") + "' BORDER=0 VSPACE=0 HSPACE=0 WIDTH=" + width + " HEIGHT=" + height + "></DIV>" + (border != 0? "</TD></TR></TABLE>" : "") + "</TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=500 HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function object(portfolio, collection, object, width, height, border, color) {	text_color = (collection.thumbnail_text_color? collection.thumbnail_text_color: portfolio.thumbnail_text_color)	background_color = (collection.thumbnail_background_color? collection.thumbnail_background_color: portfolio.thumbnail_background_color)	corner_color = (collection.thumbnail_corner_color? collection.thumbnail_corner_color: portfolio.thumbnail_corner_color)	return "<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=" + width + " HEIGHT=" + height + "><TR><TD ALIGN='middle' VALIGN='center' BGCOLOR='" +  background_color + "' STYLE='border:0px'><IMG SRC='../img/corner_top_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width - 20) + " HEIGHT=10><IMG SRC='../img/corner_top_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=" + (width - 20) + " HEIGHT=" + (height - 20) + "><TR><TD ALIGN='middle' VALIGN='center'>" + (border != 0? "<TABLE BORDER=0 CELLSPACING=" + (border || border == 0? border: 2) + " CELLPADDING=0 BGCOLOR='" + (color? color: text_color) + "'><TR><TD ALIGN='middle' VALIGN='center'>": "") + object + (border != 0? "</TD></TR></TABLE>" : "") + "</TD></TR></TABLE><IMG SRC='../img/corner_bottom_left_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><IMG SRC='../img/dot_" + corner_color + ".gif' WIDTH=" + (width - 20) + " HEIGHT=10><IMG SRC='../img/corner_bottom_right_" + corner_color + ".gif' WIDTH=10 HEIGHT=10><BR></TD></TR></TABLE>"}function key(label, url, text_color, background_color, corner_color, width, target) {	return '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=' + (width? width: 66) + ' HEIGHT=16><TR><TD WIDTH=8 HEIGHT=16 ALIGN="right" VALIGN="middle"><IMG SRC="../img/corner_top_left_' + corner_color + '.gif" WIDTH=8 HEIGHT=8 HSPACE=0 VSPACE=0><BR><IMG SRC="../img/corner_bottom_left_' + corner_color + '.gif" WIDTH=8 HEIGHT=8 HSPACE=0 VSPACE=0><BR></TD><TD WIDTH=' + (width? width - 16: 50) + ' HEIGHT=16 ALIGN="center" VALIGN="middle" BGCOLOR="' + background_color + '"><DIV STYLE="color:' + text_color + '; text-align:center; font-size:9px; font-family:arial,sans-serif; font-style:plain; font-weight:normal; padding-top:1px; white-space:nowrap"><A HREF="' + url +'" STYLE="color:' + text_color + '; text-decoration:none"' + (target? ' TARGET="_new"': '') + '>' + label + '</A></DIV></TD><TD WIDTH=8 HEIGHT=16 ALIGN="left" VALIGN="middle"><IMG SRC="../img/corner_top_right_' + corner_color + '.gif" WIDTH=8 HEIGHT=8 HSPACE=0 VSPACE=0><BR><IMG SRC="../img/corner_bottom_right_' + corner_color + '.gif" WIDTH=8 HEIGHT=8 HSPACE=0 VSPACE=0><BR></TD></TR></TABLE>'}