function opengallery (args) {
    window.open('gallery_popup.php?'+args, 'x', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,height=680,width=800');
}

function openvideo (args) {
    window.open('gallery_popup.php?v=1&'+args, 'x', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,height=400,width=500');
}
function selectcinema(cinema){
	for (i=0;i<document.getElementById('select_cinema').options.length;i++)
	{
		if (document.getElementById('select_cinema').options[i].value == cinema)
		{
			document.getElementById('select_cinema').options[i].selected = true;
		}
	}
	document.getElementById('subm_search').click();	
}
function selecttheatre(theatre){
	
	for (i=0;i<document.getElementById('select_cinema').options.length;i++)
	{
		if (document.getElementById('select_cinema').options[i].value == theatre)
		{
			document.getElementById('select_cinema').options[i].selected = true;
		}
	}
	document.getElementById('subm_search').click();	
}
function selectpartyplace(place){
	for (i=0;i<document.getElementById('select_cinema').options.length;i++)
	{
		if (document.getElementById('select_cinema').options[i].value == place)
		{
			document.getElementById('select_cinema').options[i].selected = true;
		}
	}
	document.getElementById('subm_search').click();	
}
function ShowHide(elementId)
{
	var element = document.getElementById(elementId);
	if(element.style.display != "block")
	{
		element.style.display = "block";
	}
	else
	{
		element.style.display = "none";
	}
}

