function printCopyRight() {
	copyright=new Date();
	document.write('Copyright &copy; 2008 F@ith Productions - Another Hallelujah Design - All Rights Reserved')
}

function printRandomHeaderImage()
{
	var imagenumber = 1 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
	images = new Array
	images[1] = "http://farm3.static.flickr.com/2071/2186053593_b6fcc180f2_o.jpg" //Elkan 2008
	images[2] = "http://farm3.static.flickr.com/2089/2094738098_5640d1074c_o.jpg" //Christmas
	images[3] = "http://farm2.static.flickr.com/1119/870121426_d1ca5f88a6_o.jpg" //Elkan One Year Old
	images[4] = "http://static.flickr.com/75/200997651_9a54386f09_o.jpg"
	images[5] = "http://static.flickr.com/95/239241113_ed2a7c7915_o.jpg"
	
	var myimage = images[rand1]
	document.write('<IMG border=0 SRC="' + myimage + '" WIDTH="740" HEIGHT="85" BORDER="0">')
}

function printRandomFeatureImage()
{
	var imagenumber = 7 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
	images = new Array
	images[1] = "http://farm4.static.flickr.com/3021/2712765013_586b01a56d_o.jpg" // 2 years old
	//images[1] = "http://farm2.static.flickr.com/1107/870232798_73a14d546a_o.jpg" // 1 year old
	//images[1] = "http://static.flickr.com/129/317785719_581051d22c_o.jpg" //Found Hand
	images[2] = "http://static.flickr.com/136/317785808_cacbe251a2_o.jpg" //4 months
	images[3] = "http://static.flickr.com/125/317785763_2a55bdadb3_o.jpg" //Whaz Up
	images[4] = "http://farm1.static.flickr.com/150/339679933_cc58e8786b_o.jpg" //5 months
	images[5] = "http://farm2.static.flickr.com/1395/559524029_7d585b6189_o.jpg" //Yakuza
	images[6] = "http://farm2.static.flickr.com/1220/683730011_fd90efc41f_o.jpg" //10.5months
	images[7] = "http://farm2.static.flickr.com/1395/559524029_7d585b6189_o.jpg" //Yakuza

	//images[1] = "http://farm1.static.flickr.com/135/340517115_6ae1574909_o.jpg" //Blessed 2007
	//images[2] = "http://static.flickr.com/70/214763941_abe1466490_o.jpg" //The Lord is my shepherd
	//images[1] = "http://static.flickr.com/144/324622680_e26fc4ab33_o.jpg" //Christmas 
	//images[1] = "http://static.flickr.com/79/213951677_bd97d15dcc_o.jpg" //Psalm 23
	//images[2] = "http://static.flickr.com/97/214916503_e37c4f0974_o.jpg" //Sleeping Elkan
	//images[4] = "http://static.flickr.com/75/220810360_5f90be7670_o.jpg" // Angela's Drawing
	//images[1] = "http://farm1.static.flickr.com/186/392692112_01b4c993ec_o.jpg" // CNY 2007
	
	var myimage = images[rand1]
	document.write('<TABLE background="' + myimage + '" BORDER="0" CELLPADDING="10" CELLSPACING="0" WIDTH="740">')
}

function printFooter() {
	var selectedComment = showCompliments();
	
	//document.write('<a href="eshai_contact.html">Email Eshai</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="elkan_guestbook.html" target=_blank>Guestbook</a><p>')
	document.write('<div class=bodytextsmall>')
	document.write('Copyright &copy; 2008 F@ith Productions - Another Hallelujah Design - All Rights Reserved')
	document.write('</div>')
}

function printTopBar() {
	document.write('<a href=eshai.html>Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=eshai_name.html>Eshai\'s Name</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=eshai_pix.html>Eshai\'s Pix</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=eshai_guestbook.html>Eshai\'s Guestbook</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href=http://blog.ho-me.sg>Ho-me Blog</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a target=_blank href=http://elkan.ho-me.sg>Eshai\'s Brother</a>')	
}

function showCompliments()
{
	var totalnumber = 23 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (totalnumber-1) * randomnumber) + 1 ;

	selections = new Array
	selections[1] = "'What a cute babe. What a wonderful name he has. Blessings on you all as you walk through this new journey...' - A Khan"
	
	var myselection = selections[rand1];
	return myselection;
}

function showBibleVerse()
{
	var totalnumber = 8 ;
	var randomnumber = Math.random() ;
	var rand1 = Math.round( (totalnumber-1) * randomnumber) + 1 ;

	selections = new Array
	selections[1] = "'Sons are a heritage from the LORD, children a reward from Him.' - Psalm 127:3"
	selections[2] = "'Fathers, do not exasperate your children; instead, bring them up in the training and instruction of the Lord.' - Ephesians 6:4"
	selections[3] = "'I will lie down and sleep in peace, for you alone, O LORD, make me dwell in safety.' - Psalm 4:8"
	selections[4] = "'I am God Almighty; be fruitful and increase in number.' - Genesis 35:11"
	selections[5] = "'Like arrows in the hands of a warrior are sons born in one's youth' - Psalm 127:4"
	selections[6] = "'For I know the plans I have for u... plans to prosper u and not to harm u, plans to give u hope and a future.' - Jer 29:11"
	selections[7] = "'...Be strong n courageous. Do not b terrified; do not b discouraged, 4 e Lord your God will be with u wherever u go' - Joshua 1:9"
	selections[8] = "'The Lord is my shepherd, I shall not be in want.' - Psalm 23:1"
	
	var myselection = selections[rand1];
	
	document.write(myselection)
	//return myselection;
}