﻿// JScript File

/*
************************************************************************************
Description: Write the flash to the screen and avoid requiring user to 'activate' the flash.
Author: Craig Taylor
Date: 03/20/06
************************************************************************************
*/

function WriteFlash(DivID, sScript) 
{
    var d = document.getElementById(DivID);
    d.innerHTML = sScript;
}