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=yes," + "resizable=no,";
	preview = document.open(URL,'window',windowprops);
	preview.focus();
}


// opens calendar
function OpenCalendar(formfield,languageID,type,date,mapdir) {

	url = 'js/calendar.cfm?languageID=' + languageID + '&type=' + type + '&formfield=' + formfield + '&date=' + escape(date);
	if (type == 'date')
		win = window.open(url,'calendar','height=220,width=200');
	else
		win = window.open(url,'calendar','height=240,width=310');
	win.focus();

}
