function f_PRINT_RES_NOTICE ()
    {
    if  ((screen.width<optimum_width) || (screen.height<optimum_height))
        {
        document.write('<p class="HitCounterDisc"><em>Note:&nbsp;&nbsp;</em>Your screen ');
        document.write('resolution ('+screen.width+'x'+screen.height+') ');
        document.write('does not allow for the optimal display of the ');
        document.write('wonderful graphics on this site.</p>');
        }
    }

function f_OBJ_SIZE (arg_width,arg_height)
    {
    //alert("f_OBJ_SIZE");

    dyn_width =  arg_width * pcnt_size_reduction;
    dyn_height = arg_height * pcnt_size_reduction;
    //alert ("PSR= "+pcnt_size_reduction+" width= "+dyn_width+" height= "+dyn_height);
    return;
    }

function f_INSERT_IMG (arg_name, arg_width, arg_height, arg_horz_align, arg_img_name, arg_alt)
    {
    //alert ("f_INSERT_IMG ("+arg_name+", "+arg_width+", "+arg_height+", "+arg_horz_align+", "+arg_img_name+", "+arg_alt+")");

    var s_img_string;
    var s_img_name;
    var s_alt;

    f_OBJ_SIZE (arg_width,arg_height);
    s_img_string='<img src="'+arg_name+'"Border=0 WIDTH="'+dyn_width+'" HEIGHT="'+dyn_height+'"';

    if  (arg_horz_align != "")
        s_img_string= s_img_string+' align="'+arg_horz_align+'"';

    if  (arg_img_name != "")
        s_img_string= s_img_string+' name="'+arg_img_name+'"';

    if  (arg_alt != "")
        s_img_string= s_img_string+' alt="'+arg_alt+'"';

    s_img_string= s_img_string+'>';

    //alert (s_img_string);
    document.write(s_img_string);
    return;
    }
