function popupinclude(sw) {
if (sw == 1) {
// Show popupinclude
document.getElementById('blackoutincludehtml').style.visibility = 'visible';
document.getElementById('divpopupincludehtml').style.visibility = 'visible';
document.getElementById('blackoutincludehtml').style.display = 'block';
document.getElementById('divpopupincludehtml').style.display = 'block';
} 
if (sw == 0) {
// Hide popupinclude
document.getElementById('blackoutincludehtml').style.visibility = 'hidden';
document.getElementById('divpopupincludehtml').style.visibility = 'hidden';
document.getElementById('blackoutincludehtml').style.display = 'none';
document.getElementById('divpopupincludehtml').style.display = 'none';
}
}