function PopupPPAOnlineWindow(sFile,iWidth,iHeight) {
	popupWin = window.open(sFile, 'ppa', 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable,top=0,left=0,width=' + iWidth + ',height=' + iHeight + '');
	popupWin.focus();
}

function PopupT2ProductWindow(sFile) {
	popupWin = window.open(sFile, '', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,top=0,left=0,width=770,height=600');
	popupWin.focus();
}

function PopupInfoWindow(sFile) {
	popupWin = window.open(sFile, '', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,top=10,left=10,width=546,height=550');
	popupWin.focus();
}

function PopupSampleWindow(sFile,iWidth,iHeight) {
	popupWin = window.open(sFile, 'Sample_Report', 'titlebar=no,toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable,top=0,left=0,width=' + iWidth + ',height=' + iHeight + '');
	popupWin.focus();
}
function PopupInfoDialog(sFile) {
	popupWin = window.open(sFile, '', 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,top=0,left=0,width=300,height=200');
	popupWin.focus();
}
