﻿function HideAll()
{
    for(i=0; i < ac_pl_products.length; i++)
    {
        document.getElementById(ac_pl_products[i]).style.display = 'none';
    }
}

function Show(IDDiv)
{
    HideAll();
    
    if (document.layers)
	{
		document.layers[IDDiv].display = 'block';
	}
	else if (document.all)
	{
		document.all[IDDiv].style.display = 'block';
	}
	else if (document.getElementById)
	{
		document.getElementById(IDDiv).style.display = 'block';
	}
}

function openwindow()
{
window.open("http://www.aroundcroatia.com/koordinate.asp",
	"mywindow","location=0,status=1,scrollbars=0,width=700,height=700");
}

function OpenPucPopUp(kojiPopup){
if (kojiPopup == 'email')
{
    lang = '';
    if (getQuerystring('l') != '')
        lang = "?l=" + getQuerystring('l');
    window.open("PUC_SendToFriend.aspx" + lang,
	"mywindow","toolbar=0,location=0,status=0,scrollbars=0,width=600,height=300,top=200,left=200");
}
}

function getQuerystring(key, default_)
{
  if (default_==null) default_="";
  key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
  var qs = regex.exec(window.location.href);
  if(qs == null)
    return default_;
  else
    return qs[1];
}


