<!--
/*
pop-up window code
Author: Eric King http://redrival.com/eak/
*/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}

/* 
pop-up window usage:
<a href="page.htm" onclick="NewWindow(this.href,'main','width','height','no','center');return false">link</a>
*/
-->

<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "We have really smart people who are always thinking up totally cool shit."
random_text[number++] = "You couldn't possibly succeed without us, so don't even try."
random_text[number++] = "You don't have the talent we do. Don't take it personally. That's our job. That's what we do. We do stuff."
random_text[number++] = "We charge so much for our design and marketing services because we can. Because you'll pay it."
random_text[number++] = "We really do take care of our clients. More or less, anyway."
random_text[number++] = "Cool job titles make us sound smarter and more clever."
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);

/*
// Write out the random text to the browser (placed in the page)
document.write(random_text[random_number]);
*/
-->

<!--
var imagenumber = 5 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
images[1] = "img/left1.gif"
images[2] = "img/left2.gif"
images[3] = "img/left3.gif"
images[4] = "img/left4.gif"
images[5] = "img/left5.gif"
var image = images[rand1]
-->