// JavaScript Document
$(document).ready(function() {
	$('div.msgForm p.close').bind("click", popupHide);
	$('li.popupStart a, a.popupStart').bind("click", popupShow);
});

function popupShow() {
	var theHeight;
	// Window dimensions:
	if (window.innerHeight) {
		theHeight=window.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) {
		theHeight=document.documentElement.clientHeight;
	} else if (document.body) {
		theHeight=document.body.clientHeight;
	}

	$('div.msgForm').show();
	$('div.msgForm').css("height", theHeight);
	$('div.msgForm form').css("margin", (theHeight/2 - 177)+"px auto 0 auto");
	if (typeof pT != "undefined") {
		pT._trackPageview("/poslat-znamemu.html")
	}
}
function popupHide() {
		$('div.msgForm').hide();
}
