var _PopupHelp;
function PopupHelp(id){
	var vPopupWidth = 600;
	var vPopupHeight = 500;

	var vTopPos = (window.screen.availHeight - vPopupHeight) / 2;
	var vLeftPos =(window.screen.availWidth - vPopupWidth) / 2;

	_PopupHelp = window.open('ASD/Help/Help.aspx?id=' + id,
		'popup_help', 'top=' + vTopPos + ', left=' + vLeftPos + 
		', width=' + vPopupWidth + ', height=' + vPopupHeight + 
		', menubar=no, resizable=yes, scrollbars=yes, toolbar=no, location=no');
	_PopupHelp.focus();
}

var _PopupReport;
function PopupReport(path){
	var vPopupWidth = window.screen.availWidth - 200;
	var vPopupHeight = window.screen.availHeight - 50;

	var vTopPos = 0;
	var vLeftPos =(window.screen.availWidth - vPopupWidth) / 2;

	_PopupReport=window.open(path,
		'popup_report', 'top=' + vTopPos + ', left=' + vLeftPos + 
		', width=' + vPopupWidth + ', height=' + vPopupHeight + 
		', menubar=no, resizable=yes, scrollbars=yes, toolbar=no, location=no');
	_PopupReport.focus();
}


function PopupPage(path, width, height){
	var vTopPos = (window.screen.availHeight - height) / 2;
	var vLeftPos =(window.screen.availWidth - width) / 2;
	window.open(path, '_blank', 'top=' + vTopPos + ', left=' + vLeftPos +  
		', width=' + width + ', height=' + height + 
		', menubar=no, resizable=yes, scrollbars=yes, toolbar=no, location=no');
}

