
//    This script will determine screen size and insert the correct sized movie.

//<!--

movie_name="pchs_links_logo";
height=175;

width = screen.width

if (width < 801) {
      movie_name="pchs_links_logo_122";
      height=122;
}

//document.write(' <BR>Height='+height)
//document.write(' <BR>movie='+movie_name)
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"')
document.write('  codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=5,0,0,0"')
document.write('  id="pchs_links_logo" width="'+height+'" height="'+height+'"> ')
document.write('  <param name="movie" value="'+movie_name+'.swf"> ')
document.write('  <param name="quality" value="high"> ')
document.write('  <param name="wmode" value="transparent"> ')
document.write('  <param name="bgcolor" value="#008000"> ')
document.write('  <embed name="pchs_links_logo" src="'+movie_name+'.swf" quality="high" bgcolor="#008000" ')
document.write('    width="'+height+'" height="'+height+'" ')
document.write('    type="application/x-shockwave-flash" ')
document.write('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> ')
document.write('  </embed> ')
document.write('</object> ')



//-->

