function openWindow(targetURL, width, height)
{
	window.open(targetURL, "", "top=50,left=50,width=" + width + ",height=" + height + ",toolbar=0,location=0,resizable=1,status=0,menubar=0,scrollbars=1,fullscreen=0");
}

function openGalleryWindow(grouID) 
{
	window.open('/gallery?group=' + grouID,'','width=730,height=655,top=150,left=150,scrollbars=no,resizable=yes');
}

function openVideoWindow(groupId)
		{
			window.open('/video?group=' + groupId, '','width=553,height=555,top=150,left=300,scrollbars=no,resizable=yes');
		}

function openMapWindow(mapX, mapY, poiTypes, poiIds)
{
	poiTStr = '';
	if(typeof(poiTypes) == "object")
	{
		for(i=0; i<poiTypes.length; i++)
		{
			poiTStr += poiTypes[i] + '|';
		}
	}
	poiIStr = '';
	if(typeof(poiIds) == "object")
	{
		for(i=0; i<poiIds.length; i++)
		{
			poiIStr += poiIds[i] + '|';
		}
	}
	url = 'http://www.utvonalterv.hu/?appID=vendegvaro&arrVendegVaroPoiTypes='+poiTStr+'&arrVendegVaroFixPoiIds='+ poiIStr +'&command=ShowMapCtrl&iWidth=791&iHeight=444&dCenterX=' + mapY + '&dCenterY=' + mapX + '&dradius=500';
	window.open(url, 'dynmap','width=795, height=450, status=0, toolbar=0, menubar=0, location=0, resizable=0, scrollbars=0');
}

function openWiderMapWindow(mapX, mapY, poiTypes, radius)
{
    poiTStr = '';
    if(typeof(poiTypes) == "object")
    {
        for(i=0; i<poiTypes.length; i++)
        {
            poiTStr += poiTypes[i] + '|';
        }
    }
    poiIStr = '';
    if(typeof(poiIds) == "object")
    {
        for(i=0; i<poiIds.length; i++)
        {
            poiIStr += poiIds[i] + '|';
        }
    }
    url = 'http://www.utvonalterv.hu/?appID=vendegvaro&arrVendegVaroPoiTypes='+poiTStr+'&arrVendegVaroFixPoiIds='+ poiIStr +'&command=ShowMapCtrl&iWidth=791&iHeight=444&dCenterX=' + mapY + '&dCenterY=' + mapX + '&dradius=' + radius;
    window.open(url, 'dynmap','width=795, height=450, status=0, toolbar=0, menubar=0, location=0, resizable=0, scrollbars=0');

}

function openImageWindow(targetURL, width, height)
{
	popup = window.open('', '', 'toolbar=no,location=no,directories=no,menubar=no,resizable=no,status=no,scrollbars=1,width=' + width + ',height=' + height);
	popup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	popup.document.write('<html><head><title>' + location.hostname + '</title><</head><body style="background-color: #ffffff;"><div style="text-align:center;">');
	
	popup.document.write('<img src="' + targetURL + '" border=0 onclick="self.close();" alt=""/></div></body></html>');
	popup.document.close();
}

function openImageWindowWithMedian(targetURL, width, height)
{
	popup = window.open('', '', 'toolbar=no,location=no,directories=no,menubar=no,resizable=no,status=no,scrollbars=1,width=' + width + ',height=' + height);
	popup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	popup.document.write('<html><head><title>' + location.hostname + '</title><script type="text/javascript" src="/dl/scripts/median.js"></script>');
	popup.document.write('</head><body style="background-color: #ffffff;"><div style="text-align:center;">');
//	popup.document.write('<!-- Medián WebAudit Vendégváró [hu_main] 1/2 --><img src="http://audit.median.hu/cgi-bin/track.cgi?uc=10348316723336&amp;dc=1&amp;ui='+popup.same+'" width="1" height="1" alt="">');
	popup.document.write('<noscript><!-- Medián WebAudit Vendégváró [hu_main] 1/2 --><img src="http://audit.median.hu/cgi-bin/track.cgi?uc=10348316723336&amp;dc=1" width="1" height="1" alt=""\/><\/noscript>');
	popup.document.write('<img src="' + targetURL + '" border=0 onclick="self.close();" alt=""/>');
	//popup.document.write('<!-- Medián WebAudit Vendégváró [hu_main] 2/2 --><img src="http://audit.median.hu/cgi-bin/track.cgi?uc=10348316723336&amp;dc=2&amp;ui='+same+'" width="1" height="1" alt="">');
	//popup.document.write('<noscript><!-- Medián WebAudit Vendégváró [hu_main] 2/2 --><img src="http://audit.median.hu/cgi-bin/track.cgi?uc=10348316723336&amp;dc=2" width="1" height="1" alt=""/><\/noscript><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"><\/script><script type="text/javascript">_uacct = "UA-153795-2";urchinTracker();</script>');
	popup.document.write('</div></body></html>');
	popup.document.close();
}

