//new window for enlarged photo
	//place this in anchor tag: onclick="newWindow()" target="hiRes" 
function newWindow(){
		window.open("newContent", "hiRes", "height=350,width=350")
		}


//new window for enlarged photo
	//place this in anchor tag: onclick="newShortWindow()" target="hiResShort" 
function newShortWindow(){
		window.open("newContent", "hiResShort", "height=200,width=350")
		}






//new windows for definitions
	//place this in anchor tag: onclick="word01Def()" target="defWindow" 
function word01(){
	
	window.open("newContent", "defWindow");
	defWindow.document.open();
		defWindow.document.write('<html><title>Glossary</title>');
		defWindow.document.write('<body>');
		defWindow.document.write('<b>1/4 turn cartridge</b><br/>A 2H faucet cartridge that operates from full off to full on in the span of 90 	degrees of handle rotation.');
		defWindow.document.write('</body></html>");
		defWindow.document.close(');
}

	//place this in anchor tag: onclick="word01Def()" target="defWindow" 
function word25(){
	window.open("newContent", "defWindow")
	document.write("<b>DuraSheen</b><br/>
Phoenix Products Inc. name for the PVD finish on its polished brass faucets.")

}
