function updateParent(newURL) {	opener.document.location = newURL	}function openWindow(opener) {	thisWindow = window.open(opener,'popup','toolbar=no,location=yes,scrollbars=yes,resizable=yes');	}function miniWindow(moreWin,opener) {	leftPos = 0;	if (screen) {		leftPos = screen.width-350		}	moreWin = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=320,height=500,left='+leftPos+',top=20');	moreWin.focus();	}function midWindow(moreWin,opener) {	moreWin = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=450,height=500');	moreWin.focus();	}function vidWindow(moreWin,opener) {	moreWin = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=550,height=440');	moreWin.focus();	}function majorWindow(pagename,dir) {	thisWin = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=840,height=620');	thisWin.document.write("<!DOCTYPE html PUBLIC '-\/\/W3C\/\/DTD XHTML 1.0 Strict\/\/EN' 'http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-strict.dtd'>");	thisWin.document.write("<html lang='en' xmlns='http://www.w3.org\/1999\/xhtml'>");	thisWin.document.write("<head>");	thisWin.document.write("<title>" + pagename + "\'s pedigree<\/title>");	thisWin.document.write("<meta http-equiv='content-type' content='text\/html; charset=ISO-8859-1' \/>");	thisWin.document.write("<link rel='stylesheet' href='styles\/popup.css' type='text\/css' \/>");	thisWin.document.write("<script type='text\/JavaScript' src='opener.js'><\/script>");	thisWin.document.write("<\/head>");	thisWin.document.write("<body>");	thisWin.document.write("<div><img src='" + dir + "images\/poodles\/pedigrees\/" + pagename + "-ped.jpg' alt=\"" + pagename + "\'s pedigree\" \/><\/div>");	thisWin.document.write("<div onclick='window.close(); return false' class='windowClose'>Close this window<\/div>");	thisWin.document.write("<\/body>");	thisWin.document.write("<\/html>");	thisWin.document.close();	thisWin.focus();	}function rotate() {	if ((document.images && document.imgSlide))		{		thisFrame++		if (thisFrame == imgCount)			{			thisFrame = 0			}		document.imgSlide.src=frameImages[thisFrame]		setTimeout("rotate()",2 * 2000)		}	}function slideShow(img,q) {	frameImages = new Array(q);	for(c=0; c<q; c++) {		frameImages[c] = "images/" + img + c + ".jpg"		}	imgCount = q;	thisFrame = 0;	rotate()	}function pedigreeOut(name) {	document.getElementById(name).src = 'images/pedigreeUp.gif';	}	function pedigreeOver(name) {	document.getElementById(name).src = 'images/pedigreeDown.gif';	}
