function popUp(pic)
{
	var path = 'inc/gfx/flyer/';
	var width = '560';
	var height = '767';
	var imgWidth = '500';
	var imgHeight = '707';

	var x = screen.availWidth/2-width/2;
	var y = screen.availHeight/2-height/2;
	var popupWindow = window.open('','','width='+width+',height='+height+',left='+x+',top='+y+',screenX='+x+',screenY='+y+'status=no,scrollbars=no,resizable=no');
	popupWindow.document.writeln('<html><head><title>Oktoberfest 2011</title></head>');
	popupWindow.document.writeln('<body style="margin:0; padding:0;"><table width="'+width+'" height="'+height+'" cellspacing="0" cellpadding="0" border="0">');
	popupWindow.document.writeln('<tr><td valign="middle" style="text-align:center;"><img src="'+path+pic+'" width="'+imgWidth+'" height="'+imgHeight+'" title="Oktoberfest 2011" alt="Oktoberfest 2011" />');
	popupWindow.document.writeln('</td></tr></table></body></html>');
	popupWindow.document.close();
}

function showHomeMsg(div1, div2)
{
	document.getElementById(div1).style.display='block';
	document.getElementById(div2).style.display='block';
	return false
}

function hideHomeMsg(div1, div2)
{
	document.getElementById(div1).style.display='none';
	document.getElementById(div2).style.display='none';
	return false
}
