<!-- 
// tell a friend

function ShowRecommend() 
{
	var rndURL = (1000*Math.random());
	var url = "http://www.thinkcap.com/cgi-bin/csrecommend/csrecommend.cgi?command=showrecommend&page="+escape(window.location);
	h=480;
	w=480;
	newWindow = window.open(url,'search','width='+w+',height='+h+',top='+(screen.height-h)/2+',left='+(screen.width-w)/2+',location=0,directories=0,status=no,menuBar=no,scrollBars=no,resizable=yes');
	newWindow.focus();
}

// form field colour change

function focusColor(theField, theColor){
    theField.style.backgroundColor = theColor;  
    return true;	
}

// mail form pop-up
var myHeight = 250;
var isResizable = true;

function createTarget(form) {
_target = form.target;
_colon = _target.indexOf(":");
if(_colon != -1) {
form.target = _target.substring(0,_colon);
form.args = _target.substring(_colon+1);
} else if(typeof(form.args)=="undefined") {
form.args = "";
}
if(form.args.indexOf("{")!=-1) {
_args = form.args.split("{");
form.args = _args[0];
for(var i = 1; i < _args.length;i++) {
_args[i] = _args[i].split("}");
form.args += eval(_args[i][0]) + _args[i][1];
   }
}
form.args = form.args.replace(/ /g,"");
_win = window.open('',form.target,form.args);
if(typeof(focus)=="function")
_win.focus();
return true;
}
 -->