﻿function openWindow(theURL, winName, features) { 
    window.open(theURL, winName, features);
}

function changeLinkColor(divId, txtColor) {
    if (document.getElementById(divId)) 
    {
        document.getElementById(divId).style.color = txtColor;
    }
}

