<!-- writeCobrand()
var doCGI = true;

function writeCobrand() {
//	document.website.submit();

	var tempStr = "";
	var str = "";
	var cobrandStr = "";

	doCGI = true;

	str += '<title>Kwik-Search Cobrand</title>'
	str += '</head>'

	str += '<body bgcolor="#C0C0C0" style="font-family: Arial, Helvetica, sans-serif" link="#FFFF00">'
	str += '<div align="center"><center>'

	str += '<table border="0" width="100%" cellspacing="0" cellpadding="4">'
	str += '  <tr>'
	str += '    <td width="100%" bgcolor="#000000"><p align="center"><em><font color="#FFFFFF"><big>Cut'
	str += '    and Paste this text for a button</big></font></em></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"><p align="center"><strong><small>&nbsp;</small></strong></p>'
	str += '    <p align="center"><font color="#0000FF"><small>'
	
  	tempStr = document.cobrandMain.cobrandTxt.value
	if (tempStr == "") {
		alert("You MUST enter the Cobrand title");
		doCGI = false;
		return;
	}
	cobrandStr += 'http://www.kwik-search.com/kwik-start.html?cobrand='+escape(tempStr)+','

	tempStr = document.cobrandMain.cobrandURL.value
	if (tempStr == "" || tempStr == "Do not enter HTTP://") {
		alert("You MUST enter the Cobrand URL");
		doCGI = false;
		return;
	}

	if (tempStr.indexOf('http://') != -1 || tempStr.indexOf('HTTP://') != -1)
		tempStr = tempStr.substring(7, tempStr.length);
	cobrandStr += tempStr
	
	tempStr = document.cobrandMain.passThruURL.value
	if (tempStr != "" && tempStr != "Do not enter HTTP://") {
		if (tempStr.indexOf('http://') != -1 || tempStr.indexOf('HTTP://') != -1)
			tempStr = tempStr.substring(7, tempStr.length);
		cobrandStr += '&amp;passThru='+tempStr
	}

	str += '&lt;a href="'+cobrandStr+'"&gt;&lt;img src="http://www.kwik-search.com/pix/ksButton.jpg" width="92" height="56" border="0" alt="When you just gotta find it!"&gt;&lt;/a&gt;<br><br>'
	str += '<a href="'+cobrandStr+'"><img src="http://www.kwik-search.com/pix/ksButton.jpg" width="92" height="56" border="0" alt="When you just gotta find it!"></a><br>'
	str += '    <small>Click here to see it in action</small>'
	str += '    </small></font></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%" bgcolor="#000000"><p align="center"><em><font color="#FFFFFF"><big>Cut'
	str += '    and Paste this text for a link</big></font></em></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"><p align="center"><strong><small>&nbsp;</small></strong></p>'
	str += '    <p align="center"><font color="#0000FF"><small>'
	str += '&lt;a href="'+cobrandStr+'"&gt;Kwik-Search&lt;/a&gt;'


	str += '    </small></font></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"><p align="center"><a href="'+cobrandStr+'">'
	str += '    <small>Kwik-Search</small></a><br>'
	str += '    <font color="blue"><small><small>Click here to see it in action</small></small></font></td>'
	str += '  </tr>'
	str += '  <tr>'
	str += '    <td width="100%"></td>'
	str += '  </tr>'
	str += '</table>'
	str += '</center></div>'
	str += '</body>'
	var w = window.open("","cobrand","resizable,width=600,height=400,resizable,toolbar,menubar,location,scrollbars")
	var d = w.document
	d.open() 
	d.write(str)
	d.close()
}
//-->
