<!--
var button = new Array();
var action = new Array();
var buttonWidth = new Array();
button[1] = 'Puppies for Sale';
buttonWidth[1] = 150;			//This is the button's width, in pixels.
action[1] = function () {
	window.open('../../puppiesforsale/puppiesforsale.htm');
}
button[2] = "Dogs for Sale<br>test";
buttonWidth[2] = 150;
action[2] = function () {
	window.open('../../dogsforsale/dogsforsale.htm');
}
button[3] = 'Pedigrees';
buttonWidth[3] = 150;
action[3] = function () {
	window.open('../../pedigrees/pedigrees.htm');
}
button[4] = 'Pictures';
buttonWidth[4] = 150;
action[4] = function () {
	window.open('../pictures.htm');
}
button[5] = 'Home';
buttonWidth[5] = 150;
action[5] = function () {
	window.open('../../../index.htm');
}
button[6] = 'His Pedigree';
buttonWidth[6] = 150;
action[6] = function () {
	window.open("../../pedigrees/pete.htm");
}
function placeButton(value) {
	document.write('<button id="b'+value+'" style="Width : '+buttonWidth[value]+'px ; Height : 28px; background-color: #006699" onClick="action['+value+']()"><font face="Times New Roman,Arial,Helvetica,Sans-serif" size="+1" color="#ffffff">'+button[value]+'</button>');
}


-->
