﻿function gotoUrl(url) {
  if (url == "")
    return;
  location.href = url;
}

function RunFlash(strFlashFile, strWidth, strHeight, strImgFile)
{
    document.write('<object type="application/x-shockwave-flash" data="' + strFlashFile + '" width="' + strWidth + '" height="' + strHeight + '">\n');
    document.write('<param name="movie" value="' + strFlashFile + '" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('<img src="' + strImgFile + '" width="' + strWidth + '" height="' + strHeight + '" alt="Image Header" />');
    document.write('</object>\n');
}

function RunFlashText(strFlashFile, strWidth, strHeight)
{
    document.write('<object type="application/x-shockwave-flash" data="' + strFlashFile + '" width="' + strWidth + '" height="' + strHeight + '">\n');
    document.write('<param name="movie" value="' + strFlashFile + '" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('<p class="noflash">To view this content you must <a href="http://support.microsoft.com/gp/howtoscript" target="_blank">have JavaScript enabled</a> in your browser and download the <a href="http://get.adobe.com/flashplayer/" target="_blank">Adobe Flash Player</a>.</p>');
    document.write('</object>\n');
}

function formFocus(formElement, defaultText){
    if (document.getElementById(formElement).value == defaultText)
		document.getElementById(formElement).value='';
}

function formBlur(formElement, defaultText){
    if (document.getElementById(formElement).value == '')
		document.getElementById(formElement).value=defaultText;
}

// Print current page
function PrintPage()
{
    window.print();
}