arImageSrc = new Array (
"media/images/button_bookmark_on.gif",
"media/images/button_email_on.gif",
"media/images/button_print_on.gif",
"media/images/button_search_on.gif"
);

arImageList = new Array ();

for (counter in arImageSrc) {
	arImageList[counter] = new Image();
	arImageList[counter].src = arImageSrc[counter];
}

function setBookmark(url,str){
	if(str=='')str=url;
	if (document.all)window.external.AddFavorite(url,str);
	else alert('Sorry, this function only works in Internet Explorer.\n\nPlease press CTRL and D to add a bookmark to \n"'+str+'".');
}