All pastes #2068697 Raw Edit

Anonymous

public javascript v1 · immutable
#2068697 ·published 2011-05-24 23:52 UTC
rendered paste body
<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><meta http-equiv="Content-Style-Type" content="text/css"><meta http-equiv="Content-Script-Type" content="text/javascript"><style type="text/css">		a {		color: #00FF00;		text-decoration: none;		font-size: 8pt;	}	a:hover {		color: #00FF00;		text-decoration: none;		font-size: 8pt;	}	body {		color: #00FF00;		font-size: 18pt;		background-color: #000000;		font-family: Courier, Sans-serif;		font-weight: bold;		margin: 0px;		padding: 0px;	}	img {		border: 0px;	}</style><script language="JavaScript">	var text="";	var delay=150;	var currentChar=1;	var destination="";	function type() {		if (document.getElementById) {			var dest=document.getElementById(destination);			if (dest) {				if (currentChar <= text.length) {					dest.innerHTML=text.substr(0, currentChar);					currentChar++;				}				if (currentChar == text.length + 1)					dest.innerHTML = dest.innerHTML.substr(0, text.length) + "<blink>_</blink>";				else					setTimeout("type()", delay + Math.floor(Math.random() * 171));			}		}	}	function startTyping(textParam, delayParam, destinationParam) {		text=textParam;		delay=delayParam;		currentChar=1;		destination=destinationParam;		type();	}		function drawCloud() {		document.write("asdf");	}</script></head><body onmousemove="drawCloud">&nbsp;</body></html>