/**********************************************************************************************
 better way to load JS functions than window.onload
**********************************************************************************************/

function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    } else {
        window.onload = function() {
            if (oldonload) {
                oldonload();
            }
            func();
        }
    }
}

/**********************************************************************************************
 Photos Flash Header - general photos
**********************************************************************************************/

function PhotosHeader() {

document.write('<object type="application/x-shockwave-flash" data="http://ncflorist.org/ssp_director/ssp_general.swf" width="550" height="400" id="general_photos">\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('<param name="allowscriptaccess" value="always" />\n');
document.write('<param name="movie" value="http://ncflorist.org/ssp_director/ssp_general.swf" />\n');
document.write('<img src="http://www.ncflorist.org/images/noflash.gif" width="288" height="128" alt="please install the flash player to fully utilize our site" />\n');
document.write('</object>\n');

}

