var width,height,image,winWidth,winHeight
function viewLarge(image,width,height) {
	winWidth = "width=" + (width+40) + "";
	winHeight = "height=" + (height+70) + "";

var t1 ="<HTML><HEAD><TITLE>Creative Connections International Art Show</TITLE><LINK REL='stylesheet' TYPE='text/css' HREF='/includes/creative.css'></HEAD>"
var t2 ="<CENTER><br/><A HREF=javascript:self.close();><IMG SRC='" + image + "' BORDER=0></A><P><A CLASS='bodyLinkBold' HREF='#' onClick='self.close()'>Close Window</A></P></CENTER></HTML>"

if ((width > 760) && (height > 600)) {
	winWidth = "width=" + 800 + "";
	winHeight = "height=" + 600 + "";
	ImageWindow=window.open("","popup","toolbar=no,scrollbars=yes,menubar=no," + winWidth + "," + winHeight);
} else if (width > 760) { 
	winWidth = "width=" + 800 + "";
	ImageWindow=window.open("","popup","toolbar=no,scrollbars=yes,menubar=no," + winWidth + "," + winHeight);
} else if (height > 600) {
	winHeight = "height=" + 600 + "";
	ImageWindow=window.open("","popup","toolbar=no,scrollbars=yes,menubar=no," + winWidth + "," + winHeight);
} else {
	ImageWindow=window.open("","popup","toolbar=no,scrollbars=no,menubar=no," + winWidth + "," + winHeight);
}
ImageWindow.document.write(t1+t2)
ImageWindow.document.close()
}

function toggle(div1,div2) {
	document.getElementById(div2).style.display = 'none';
	document.getElementById(div1).style.display = 'block';
}
