<!-- Bookmark Site -->

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

<!-- PopUp Windows -->

var win = null;
function popUp(mypage,myname,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=1'+scroll+',resizable'
	win = window.open(mypage,myname,settings)
}

<!-- PopUp Images -->

function popUpImage(imageName,imageWidth,imageHeight,imageCaption) { 
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=100,top=100"); 
	newWindow.document.open(); 
	newWindow.document.write('<html><title>CSS Popup Picture</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<img src=../images/pictures/'+imageName+' border=0><br>'+imageCaption); 
	newWindow.document.write('</body></html>'); 
	newWindow.document.close(); 
	newWindow.focus(); 
}

//-->



<!-- <a href="#" onclick="popUpImage('pantries/1.jpg','450','325','');"><img src="../images/pictures/pantries/1s.jpg"></a> -->
