//popup
function thumb(sPic) { 
     window.open("thumbs.php?"+sPic, "thumb", "resizable=0,HEIGHT=450,WIDTH=300"); 
   }

function smartfield(field){    
	if (field.value==field.defaultValue) 
		{
		field.className='smartinput2';
		field.value='';
		}
	else if (field.value=='' ||  field.value==' ') {
		field.className='smartinput';
		field.value=field.defaultValue;
		}
	}

 function noSpam( user, domain ) {
    document.location = 'mailto:' + user + '@' + domain;
}

function setComboItem(_name, selectit)
{
	var _cb = document.getElementById(_name);
	var nItems = _cb.length;

	for(var i=0;i<nItems;i++) 
		if(_cb[i].text == selectit) 
			{
			_cb.selectedIndex = i;
			break;
			}
	
}

function toggle (xxx) {
	elem = document.getElementById(xxx);
	if (elem.style.display == 'block') elem.style.display = 'none';
		else elem.style.display = 'block';
		}

//popup thumb
   function thumb(sPic) { 
     window.open("thumbs.php?"+sPic+".jpg", "thumb", "resizable=0,HEIGHT=500,WIDTH=450"); 
   } 
