function openPhotoWindow(photo,width,height)  {
	newWindow = window.open('images/' + photo + '.jpg', 'newWin','toolbar=no, width=' + width + ', height=' + height + ', resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

function openKitWindow()  {
	newWindow = window.open('kit.asp', 'newWin','toolbar=no, width=600, height=550, resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

