<!--

if (view == "all"){} else {

	//write out bigPix div
	
	if (window.name == "my_new_window"){
		document.write('<div id="bigPix">');
	} else {	
		document.write('<div id="bigPix" class="right">');
	}

	//call prototype function to get inner html
	updateBigPix(thisPaintingNum);
	
	//close div
	document.write('\</div>');

}


// --> 

