﻿// <![CDATA[
function Show_Popup() {
	jQuery('body').css('overflow','hidden');
	jQuery('#popup').fadeIn('fast');
	jQuery('#window').fadeIn('fast');
}
function Close_Popup() {
	jQuery('#popup').fadeOut('fast');
	jQuery('#window').fadeOut('fast');
	jQuery('body').css('overflow','auto');	
}
// ]]&gt;
