// JavaScript source code

// Opens the popup window with specified URL, position and dimensions.
function openPopupWindow(url, left, top, width, height, scroll)
{
window.open(url, 'popupcal', 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=' + scroll);
}

// Closes the popup window.
function closePopUpWindow()
{
	self.close();
}	
