function equalBlocks(num)
{
	var maxHeight = 0;
	var block;
	for (i = 1 ; i <= num ; i++)
	{
		block = document.getElementById("block"+i);
		if (block.offsetHeight > maxHeight)
			maxHeight = block.offsetHeight;
	}
	for (i = 1 ; i <= num ; i++)
	{
		document.getElementById("block"+i).style.height = maxHeight+"px";
	}
//alert(document.getElementById("block1").offsetHeight);
}

var bookmarkurl="http://www.dr-mrina.co.il";
var bookmarktitle='מרכז לרפואה אסטטית ד"ר קורמן';
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

