
function ResizeIframe() {
	var overlay = jQuery('<div id="overlay"> </div>');
	var ifr = $('#EPOWER');
	overlay.appendTo(document.body);
	ifr.load(function() {
		$('#content').remove();
		ifr.css({
			'margin-top': '30px',
			'width': '1000px',
			'height': '900px',
			'overflow': 'auto',
		});
		overlay.remove();
	});
	return true;
}
function PopupOpenCenter(OpenPage, PopupName, Width, Height, Properties) {
	Left = (screen.availWidth - Width) / 2;
	Top = (screen.availHeight - Height) / 2;
	window.open(OpenPage, PopupName, Properties + ',top=' + Top + ',left=' + Left + ',width=' + Width + ',height=' + Height);
}
