View Single Post
Old 06-11-2010, 12:17 PM  
quantum-x
Confirmed User
 
quantum-x's Avatar
 
Join Date: Feb 2002
Location: ICQ: 251425 Fr/Au/Ca
Posts: 6,863
If PHP is in your reach, try:

<SCRIPT LANGUAGE="JavaScript" SRC="<?=rand(1,2)?>.js">

If not:
<script>
var oHead = document.getElementsByTagName('HEAD').item(0);
var oScript= document.createElement("script");
oScript.type = "text/javascript";
oScript.src= Math.floor ( Math.random ( ) * 2 + 1 )+".js";
oHead.appendChild( oScript);
</script>
quantum-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote