function doPopup(URL, WIDTH, HEIGHT) {
	url = URL;
	width = WIDTH;  // width of window in pixels
	height = HEIGHT; // height of window in pixels
	windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + "toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars=no," + "resizable=no,";
	preview = document.open(URL, "_blank", windowprops);
}

function doPopup2(URL, WIDTH, HEIGHT) {
	url = URL;
	width = WIDTH;  // width of window in pixels
	height = HEIGHT; // height of window in pixels
	windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT + "toolbar=no," + "location=no," + "directories=no," + "status=no," + "menubar=no," + "scrollbars=yes," + "resizable=no,";
	preview = window.open(URL, "preview", windowprops);
}

function OpenCalendar(formfield,language,type,date,mapdir) {

	url = 'http://www.matador.sk/js/calendar.cfm?language=' + language + '&type=' + type + '&formfield=' + formfield + '&date=' + escape(date);
	win = window.open(url,'calendar','height=240,width=250');
	win.focus();

}

