﻿function setBodyHeightToContentHeight() {
	document.body.style.height = Math.max(document.documentElement.scrollHeight, document.body.scrollHeight) + "px";
}
setBodyHeightToContentHeight();
$addHandler(window, "resize", setBodyHeightToContentHeight);
function ClosePopup() {
	var elem = $find('popup').get_element();
	elem.style.display ='none'
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();