
function mouseEventHandle (num,evnt) {

	if (evnt) {
		document.getElementById ('product'+num).className = 'productOver';
		document.getElementById ('href'+num).className = 'blackproductsOver';
		var elid = document.getElementById ('price'+num);
		if (elid) {
			document.getElementById ('price'+num).className = 'priceOver';
			document.getElementById ('dprice'+num).className = 'priceOver';
		}
	} else {
		document.getElementById ('product'+num).className = 'product';
		document.getElementById ('href'+num).className = 'blackproducts';
		var elid = document.getElementById ('price'+num);
		if (elid) {
			document.getElementById ('price'+num).className = 'price';
			document.getElementById ('dprice'+num).className = 'price';
		}
	}

}

function addBookmark (ptitle,url) {
	if (window.sidebar) {
		alert ("Press Ctrl+D to Bookmark This Site.");
	} else if (document.all) {
		window.external.AddFavorite (url,ptitle);
	} else if (window.opera && window.print) {
		return true;
	}
}
