function discount_domain_name()
{
  document.write("<span style='color: red; font: 11pt arial black, arial, helvetica, sans serif;'>");
  document.write("(<img src='/images/discount_domain_name.gif' border='0' alt='[Discount Domain Name]'>)</span>");
}

function premium_domain_name()
{
  document.write("<span style='color: red; font: 11pt arial black, arial, helvetica, sans serif;'>");
  document.write("(<img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'>)</span>");
}

function double_premium_domain_name()
{
  document.write("<span style='color: red; font: 11pt arial black, arial, helvetica, sans serif;'>");
  document.write("(<img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'>)</span>");
}

function triple_premium_domain_name()
{
  document.write("<span style='color: red; font: 11pt arial black, arial, helvetica, sans serif;'>");
  document.write("(<img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'>)</span>");
}

function quadruple_premium_domain_name()
{
  document.write("<span style='color: red; font: 11pt arial black, arial, helvetica, sans serif;'>");
  document.write("(<img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'><img src='/images/premium_domain_name.gif' border='0' alt='[Premium Domain Name]'>)</span>");
}

function baywalkdomains_top()
{
  document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"778\" height=\"240\">");
  document.write("<param name=movie value=\"/header.swf\">");
  document.write("<param name=quality value=high>");
  document.write("<param name=wmode value=transparent>");
  document.write("<embed src=\"/header.swf\" quality=high wmode=transparent width=778 height=240 pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\">");
  document.write("</embed>");
  document.write("</object>");
}

function call_baywalkdomains()
{
  document.write("<table align='center' width='650' cellspacing='0' cellpadding='5' style='border: solid 2px gold; margin-top: .2in; margin-bottom: .2in;'>");
  document.write("<tr><td align='center' valign='middle' style='background-color: #4040D9; color: gold; font: 12pt arial, helvetica, sans serif; font-weight: bold; line-height: 1.5;'>");
  document.write("Interested in any of these great domain names?<br>");
  document.write("Call Baywalk Domains at (626) 380-8300 &mdash; Monday - Friday, 9 - 5 pm PST.<br>");
  document.write("We also welcome GoDaddy's DOMAIN BUY customers.<br>");
  document.write("</td></tr></table>");
}

function show_date()
{
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
// today =  days[now.getDay()] + ", " +
//               months[now.getMonth()] + " " +
//                date + ", " +
//                 (fourdigits(now.getYear())) ;
// 
day_of_week = days[now.getDay()]
today =  months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

// Print out the data.
document.write("<font size=2 face=arial><b>"+day_of_week+", "+today+"</b></font>");
}

function which_browser() {
// Browser Detection Javascript
// copyright 1 February 2003, by Stephen Chapman, Felgall Pty Ltd

// You have permission to copy and use this javascript provided that
// the content of the script is not changed in any way.

var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("chrome") != -1) return 'Chrome';
if (agt.indexOf("opera") != -1) return 'Opera';
if (agt.indexOf("staroffice") != -1) return 'Star Office';
if (agt.indexOf("webtv") != -1) return 'WebTV';
if (agt.indexOf("beonex") != -1) return 'Beonex';
if (agt.indexOf("chimera") != -1) return 'Chimera';
if (agt.indexOf("netpositive") != -1) return 'NetPositive';
if (agt.indexOf("phoenix") != -1) return 'Phoenix';
if (agt.indexOf("firefox") != -1) return 'Firefox';
if (agt.indexOf("safari") != -1) return 'Safari';
if (agt.indexOf("skipstone") != -1) return 'SkipStone';
if (agt.indexOf("msie") != -1) return 'Internet Explorer';
if (agt.indexOf("netscape") != -1) return 'Netscape';
if (agt.indexOf("mozilla/5.0") != -1) return 'Mozilla';
if (agt.indexOf('\/') != -1) {
if (agt.substr(0,agt.indexOf('\/')) != 'mozilla') {
return navigator.userAgent.substr(0,agt.indexOf('\/'));}
else return 'Netscape';} else if (agt.indexOf(' ') != -1)
return navigator.userAgent.substr(0,agt.indexOf(' '));
else return navigator.userAgent;
}


function system_information()
{
document.write("<ul>");
browser_name = which_browser(); 

document.write("<li>Real Web Browser Name: <b>" + browser_name);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>based on navigator.userAgent<br>");
	document.write(" &mdash; which_browser() javascript searches navigator.userAgent.</span></li>");

document.write("<li>Reported Web Browser Name: <b>" + navigator.appName);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.appName<br>");
	document.write(" &mdash; Note that FireFox and Chrome report 'Netscape'.</span></li>");

document.write("<li>Your Web Browser Code Name: <b>" + navigator.appCodeName);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.appCodeName<br>");
	document.write(" &mdash; Note that they all report 'Mozilla'.</span></li>");

document.write("<li>Your Computers OS: <b>" + navigator.platform);
document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.platform</span></li>");

document.write("<li>Cookies enabled: <b>" + navigator.cookieEnabled);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.cookieEnabled</span></li>");
		

document.write("<li>Java");
if (navigator.javaEnabled()) 
	document.write("<b> is </b>");
else document.write("<b> isn't </b>");
	document.write("enabled. ");
	document.write("<span style='color: brown; font-size: 9pt;'>navigator.javaEnabled()</span></li>");

document.write("<li>Your Screen Resolution is: <b>");
	document.write(window.screen.width);
	document.write(" x ");
	document.write(window.screen.height);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>window.screen.width and window.screen.height</span></li>");

document.write("<li>Reported Browser Version is: <b>" + navigator.appVersion);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.appVersion</span></li>");

document.write("<li>Actual Browser Name and Version: <b> " + navigator.userAgent);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>navigator.userAgent<br>");
	document.write(" &mdash; Note the real browser version is in here.</span></li>");

if (navigator.language)
{
document.write("<li><b>Language:</b> " + navigator.language + " <span style='color: brown; font-size: 9pt;'>navigator.language (for FireFox, Chrome, and Opera)</span>");
}

if (navigator.userLanguage)
{
document.write("<li><b>Language:</b> " + navigator.userLanguage + " <span style='color: brown; font-size: 9pt;'>navigator.userLanguage (for Internet Explorer and Opera)</span>");
}

document.write("<li><b>Platform:</b> " + navigator.platform + " <span style='color: brown; font-size: 9pt;'>navigator.platform</span>");


browser_name = which_browser(); 
if (browser_name == "Internet Explorer")
{
document.write("<li>Your Color Depth is: <b>");
	document.write(window.screen.colordepth);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>window.screen.colordepth</span></li>");

document.write("<li>Your Available Screen Resolution is: <b>");
	document.write(window.screen.availwidth);
	document.write(" x ");
	document.write(window.screen.availheight);
	document.write("</b> <span style='color: brown; font-size: 9pt;'>window.screen.availwidth and window.screen.availheight</span></li>");
}

document.write("<li>Font Smoothing");
	if (window.screen.fontSmoothingEnabled == true) document.write("<b> is </b>");
	else document.write("<b> isn't </b>");
		document.write("enabled ");
		document.write("<span style='color: brown; font-size: 9pt;'>window.screen.fontSmoothingEnabled</span></li>");

if (document.referrer != "")
{
document.write("<li>You were referred here by: <b>");
		document.write(document.referrer);
		document.write("</b> <span style='color: brown; font-size: 9pt;'>document.referrer</span></li>");
}

document.write("<ul>");

// Based on Cookie user info script on http://simplythebest.net/scripts/. Modified by D. Tripodes 2008-09-04.
// Calls which_browser().

}
