
var remote = null;
function popUp(URL) 
{
	d = new Date();

	remote = window.open(URL,'helpPopup' + d.getTime(),'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=400,height=600,left=0,top=0');
}
function smallPopUp(URL) 
{
	d = new Date();

	window.open(URL,'helpPopup' + d.getTime(),'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=400,height=300,left=0,top=0');

}

function doBorder(which,color)
{

    if (document.all||document.getElementById)
    {
        which.style.borderColor=color
    }
}

