function resize_images() 
  { 
    for (i = 0; i < document.images.length; i++) 
    { 
      while ( !document.images[i].complete ) 
      { 
        break;
      } 
      if ( document.images[i].width > 640 ) 
      { 
        document.images[i].width = 640; 
        document.images[i].className = "resizedimg"; 
      } 
    } 
  } 
function pointercursor(){document.body.style.cursor = "pointer";}
function unpointercursor(){document.body.style.cursor="";}

function open_popup(name) {
	window.open('templates/deciftw/resizefix.php?originalsize=../../images/killshots/pvekill_'+name+'.jpg', '_blank' ,'scrollbars=1,toolbar=no,resizable=1,menubar=no,directories=no,status=yes'); 
	return false;
}

function submit_avatarswitch() {
	
	document.avatarform.submit();
}