function writeDate(){
var time = Date();
var length = time.length;
var start = "0";
var init ="0";

	for(start; start < length ; start++){
		if (time.charAt(start) == "G"){
			time = time.substring(init ,start);
			document.write(time);
			break;
		}
		else{
			if(start == length -"1"){
				document.write(time);	
			}
		}
	}	
}

function writeMenu()	
{
			var menu_contents = new Array();
/* Items should go in alphabetical order */

menu_contents["adult_entertainment"] = "Adult Entertainment";
menu_contents["automobiles"] = "Automobiles";
menu_contents["bars"] = "Bars";
menu_contents["clubs"] = "Clubs";
menu_contents["links"] = "Link Exchange Services";
menu_contents["online_directory"] = "Online Directory";
menu_contents["seo"] = "Search Engine Optimization";
menu_contents["web_design"] = "Web Design";

/*
menu_contents[""] = "";
*/	
	document.write("<select name=&quot;category&quot;>");
	var length_limit ="20";
	for ( option in menu_contents){
		var menu_item = menu_contents[option];
		var item_length =menu_item.length;
		if (item_length < length_limit){
		document.write("<option>" +menu_item +"</option>");
		}
		else{
		menu_item = menu_item.substring("0","17");
		document.write("<option>" +menu_item +"...</option>");
		}
	}	
	document.write("</select>");
}

function link_text_option(){
var date = new Date();
var hours = date.getHours();
var day = date.getDay() +"1";
var date_var = date.getDate();
var zero ="0";
var ten ="10";
var twenty ="20";
var formula_value = (hours - date_var + day);

var morethan = "<ul><li>Title: Buy - Sell - Exchange Text Links</li><li>Description: Squid Link is a site specialising in the buying, selling and exchanging of text based web links.</li><li>URL: http://www.squidlink.net/</li></ul><p><strong>Link Code (Simply Cut and Paste):</strong><br>&lt;p&gt;&lt;a href=&quot;http://www.squidlink.net&quot; target=&quot;_blank&quot;&gt;Buy - Sell - Exchange Text Links&lt;/a&gt;&lt;br&gt; Squid Link is a site specialising in the buying, selling and exchanging of text based web links.&lt;/p&gt;</p>";

var morethan2 = "<ul><li>Title: Text Link Exchange Service</li><li>Description: Squid Link is a site specialising in the buying, selling and exchanging of text based web links.</li><li>URL: http://www.squidlink.net/</li></ul><p><strong>Link Code (Simply Cut and Paste):</strong><br>&lt;p&gt;&lt;a href=&quot;http://www.squidlink.net&quot; target=&quot;_blank&quot;&gt;Text Link Exchange Service&lt;/a&gt;&lt;br&gt; Squid Link is a site specialising in the buying, selling and exchanging of text based web links.&lt;/p&gt;</p>";

var morethan3 = "<ul><li>Title: Offsite Search Engine Promotion Services</li><li>Description: Squid Link is a site specialising in the buying, selling and exchanging of text based web links.</li><li>URL: http://www.squidlink.net/</li></ul><p><strong>Link Code (Simply Cut and Paste):</strong><br>&lt;p&gt;&lt;a href=&quot;http://www.squidlink.net&quot; target=&quot;_blank&quot;&gt;Offsite Search Engine Promotion Services&lt;/a&gt;&lt;br&gt; Squid Link is a site specialising in the buying, selling and exchanging of text based web links.&lt;/p&gt;</p>";

var lessthan = "<ul><li>Title: Free to Join Website Directory</li><li>Description: Squid Link is a site specialising in the buying, selling and exchanging of text based web links.</li><li>URL: http://www.squidlink.net/</li></ul><p><strong>Link Code (Simply Cut and Paste):</strong><br>&lt;p&gt;&lt;a href=&quot;http://www.squidlink.net&quot; target=&quot;_blank&quot;&gt;Free to Join Website Directory&lt;/a&gt;&lt;br&gt; Squid Link is a site specialising in the buying, selling and exchanging of text based web links.&lt;/p&gt;</p>";

var equal = "<ul><li>Title: Internet Link Directory</li><li>Description: Squid Link is a site specialising in the buying, selling and exchanging of text based web links.</li><li>URL: http://www.squidlink.net/</li></ul><p><strong>Link Code (Simply Cut and Paste):</strong><br>&lt;p&gt;&lt;a href=&quot;http://www.squidlink.net&quot; target=&quot;_blank&quot;&gt;Internet Link Directory&lt;/a&gt;&lt;br&gt; Squid Link is a site specialising in the buying, selling and exchanging of text based web links.&lt;/p&gt;</p>";

	if (formula_value < zero){
		document.write(lessthan);
	}
	if (formula_value == zero){
		document.write(equal);
	}		
	if (formula_value > zero){
	 	if (formula_value > ten){
			document.write(morethan3);
		}
		else{
			if (formula_value > twenty){
				document.write(morethan2);
			}else{
				document.write(morethan);
			}
		}
	}
}