﻿function gotoUrl(url) {
  if (url == "")
    return;
  location.href = url;
}

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;
}

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="Bral" />');
    document.write('</object>\n');
}

function imageRollOver(img_name, img_src)
{
    document[img_name].src = '/resources/blick/images/' + img_src;
}