
function fix_anchors ()
{
	var anchors = document.getElementsByTagName ('a');
	for ( var i = 0; i < anchors.length; i++ )
	{
		if ( anchors[i].name && anchors[i].name.match ('#') )
		{
			anchors[i].name = anchors[i].name.replace ('#', '');
		}
	}
}

function HideAll (count)
 {
 return;
  var prvek;
  for (var i = 1; i <= count; i++) 
   {
    prvek=document.all["Sub"+i];
    prvek.style.display="none";
   }
 }

function Show(Number,count) 
 {
   HideAll(count);
   prvek=document.all["Sub"+Number];
   prvek.style.display="block";
 }

function New(link,w,h)
 {
  open("new.php?art="+link, "", "directories=no, width="+w+", height="+h);
 }

function NewContact(link)
 {
  open("contact.php?province="+link, "", "directories=no, width=500, height=400");
 }
 

