
/*
function placeholders(attribute) {
	if (attribute=='placeholder') {
	   var detect=navigator.userAgent.toLowerCase(); 
	   if (detect.indexOf("safari")>0) return false;
	}
	var textFields = document.getElementsByTagName('input');
	for (var i=0; i<textFields.length; i++) {
		textField = textFields[i];
		if (textField.getAttribute('type') == 'text' && textField.getAttribute(attribute)) {
			textField.value = textField.getAttribute(attribute)
			textField.onfocus = function() {
				if (this.value==this.getAttribute(attribute)) this.value = '';
			}
			textField.onblur = function() {
				if (this.value=='') this.value = this.getAttribute(attribute);
			}
		}
	}
}
*/