// ############## JavaScript Toolkit ##############
// #                                              #
// #   Made by: Cosmo (Devran Uenal)              #
// #       ICQ: 102191276                         #
// #    E-Mail: maccosmo@gmail.com                #
// #                                              #
// ################################################

function setValue(current, defaultValue, type){
  if(type == 'remove' && current.value == defaultValue)
  {
    current.value = '';
  }
  if(type == 'set' && current.value == '')
  {
    current.value = defaultValue;
  }
}

function setImage(current, image, job)
{
  if(job == 'set')
  {
    current.src = image + 'Down.gif';
  }
  else
  {
    current.src = image + '.gif';
  }
}

function replaceAllTagAttributes(tagName, property, value)
{
  for(i = 0; i < document.getElementsByTagName(tagName).length; i++)
  {
    document.getElementsByTagName(tagName)[i].setAttribute(property, value, 1);
  }
}

function popup(fileName, width, height)
{
  window.open(fileName, 'AVVListe', 'status=no,toolbar=no,locationbar=no,menubar=no,scrollbars=yes,copyhistory=no,width=' + width + ',height=' + height + ',resizable=no');
}
