﻿// Popup window code
function newPopup(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}

// replace out the < and >
function htmlReplace(ctlId)
{
    if (document == null)
        return;
    
    var ele = document.getElementById(ctlId);
    
    if (ele == null)
        return;
        
    var newVal = ele.value.replace('<', '%24').replace('>', '%24');            
            
    document.getElementById(ctlId).value = newVal;
}


