function viewFullSize()
{
	var project = projectHandler.currentProject;
	top.fullSizeWindow = window.open('','fullSizeView',
	  'width=640,height=612'
	   +',menubar=0'
	   +',toolbar=0'
	   +',status=1'
	   +',scrollbars=0'
	   +',resizable=1');
	 docRef = top.fullSizeWindow.document.open("text/html","replace");  
	 top.fullSizeWindow.document.writeln(
	 '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"'
	   +'"http://www.w3.org/TR/html4/strict.dtd">'
	   +'<html><head><title>Console</title>'
	   +'<link rel="stylesheet" href="/build/Projects/css/fullview.css" type="text/css"/>'
	   +'</head>'
	   +'<body onload="this.focus();">'
	   +'<img id="header" src="/build/Common/images/full_view_header.gif" alt="Robert J. Calvano">'
	   +'<div id="viewDescription">' + project.images[project.currentView].description + '</div>'
	   +'<img src="' + project.resourceLocation + 'l_' + project.currentView + '.' + project.images[project.currentView].type + '"/>'
	   +'<div id="footerBlock"><!-- footerBlock -->Note: Some content requires <a href="http://www.adobe.com/go/getflashplayer" target="_blank">Macromedia Flash Player</a> for viewing. © 2005 Robert J. Calvano. All products and trademarks displayed on this portfolio site are the property of their respective owners. Unauthorized reproduction is strictly prohibited.</div>'
	   +'</body></html>'
	 );
	 top.fullSizeWindow.document.close();
	return false;
}
			
function setCurrentView(viewIndex)
{
	var project = projectHandler.currentProject;
	project.currentView = viewIndex;
	var imgSrc = project.resourceLocation + "m_" + project.currentView + "." + project.images[project.currentView].type;
	document.getElementById("projectImage").src = imgSrc;
	document.getElementById("currentViewDescription").innerHTML = project.images[project.currentView].description;
	return false;
}

