/////////////////////////////////////////////////
// The following functions are for row over effects:
//

/**
 *
 */
function rowOver (trElem)
{
  // Set the color of the whole row to the following:
  trElem.bgColor = '#383838';
} // rowOver


/**
 *
 */
function rowOut (trElem)
{
  // Set the color of the whole row to the following:
  trElem.bgColor = '#000000';
} // rowOver


/////////////////////////////////////////////////
// The following functions are for about me pics:
//

var picType = ".jpg";

/**
 *
 */
function setOverPic (imgName)
{
  if (document.images)
    document.images[imgName].src = imgName + "_ovr" + picType;
} // setOverPic


/**
 *
 */
function setOutPic (imgName)
{
  if (document.images)
    document.images[imgName].src = imgName + picType;
} // setOutPic


/**
 *
 */
function openPic (imgName, width, height)
{
  var newWindow = window.open (imgName + "_big" + picType, imgName, "dependen=yes, width=" + (width + 15) + ", height=" + (height + 20) + ", location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no");
} // openPic


/**
 *
 */
function openFlash (mname)
{
  window.open('http://www.alternarocker.org/main/showflash.php?fn=' + mname + '&t=' + mname,'_blank','resizable=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no,height=400,width=400');
} // openFlash


