urlbox_default = "Paste a Long URL Here";window.onload = function () {	// add event to url	var urlbox = document.getElementById('longurl');		if (urlbox) {		urlbox.onfocus = function () {			this.className = '';			if (this.value == urlbox_default) {				this.value = "http://";				this.select();			}		}		urlbox.onblur = function () {			if (this.value == "" || this.value == "http://" || this.value == urlbox_default) {				this.value = urlbox_default				this.className = 'pastehere';			}		}		if (urlbox.value == "") {			urlbox.onblur();		} else {			urlbox.onfocus();		}	}		//select all 	function select_all(element1) {  	// first set focus  	document.formtocopy.elements[element1].focus();  	// select all contents  	document.formtocopy.elements[element1].select();  	}  	select_all('texttocopy');	}