<!--
var button = new Array();
var action = new Array();
button[1] = 'Puppies for Sale';
action[1] = function () {
	window.open('ourdogs/puppiesforsale/puppiesforsale.htm');
}
button[2] = 'Dogs for Sale';
action[2] = function () {
	window.open('ourdogs/dogsforsale/dogsforsale.htm');
}
button[3] = 'Pedigrees';
action[3] = function () {
	window.open('ourdogs/pedigrees/pedigrees.htm');
}
button[4] = 'Pictures';
action[4] = function () {
	window.open('ourdogs/pictures/pictures.htm');
}
button[5] = 'Videos!'; //FireFox recognizes the new line I.E. doesn't.//
action[5] = function () {
	window.open('http://www.youtube.com/user/jlbcwork');
}
button[6] = 'Click here';
action[6] = function () {
	window.external.AddFavorite('http://www.jlbordercollies.com/', 'J & L Border Collies');
}
function placeButton(value) {
	document.write('<button style="FONT-SIZE: 19px; TEXT-ALIGN: center; COLOR: #ffffff; FONT-FAMILY: Times New Roman, Arial, Helvetica, Sans-serif; background-color: #006699; width: 155px; Height: 35px;" onClick="action['+value+']()">'+button[value]+'</button>');
}

function newWindow(link) {
	window.open(link, "", "status,width=795,height=515");
}
-->

