/* modal.js - javascript to control the modal window */

function showModalWindow()
{
	scrollTo(0,0);
	$('div#modal_window').show();
}

function hideModalWindow()
{
	// clear the content in the popup
	$('div#modal_window_ajax_content').html('');;
	
	// hide the modal window
	$('div#modal_window').hide();
}
