function fform_name(inout,id,val){
		if (inout == 0){ 
			if (document.getElementById(id).value == ""){ document.getElementById(id).value = val; }
		} else { 
			if (document.getElementById(id).value == val){ document.getElementById(id).value = ""; }
		}
}
//twitter widget
function twitOut(){
		new TWTR.Widget({
		  version: 2,
		  type: 'profile',
		  rpp: 2,
		  interval: 30000,
		  width: 224,
		  height: 228,
		  theme: {
			shell: {
			  background: '#000000',
			  color: '#ffffff'
			},
			tweets: {
			  background: '#000000',
			  color: '#ffffff',
			  links: '#ff9e02'
			}
		  },
		  features: {
			scrollbar: true,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: false,
			avatars: true,
			behavior: 'all'
		  }
		}).render().setUser('ladsholiday_').start();
}
