function getSearch(){
	var search = form.search.value;
	self.location='processSearch.php?search=' + search;
}

function addbookmark() {
	 bookmarkurl="http://www.thebabywebsite.com"
	 bookmarktitle="TheBabyWebsite.com"
	 if (document.all)
		 window.external.AddFavorite(bookmarkurl,bookmarktitle)
}


function getthedate(){
	var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
	var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 1000)
		year+=1900
	var day=mydate.getDay()
	var month=mydate.getMonth()
	var daym=mydate.getDate()
	if (daym<10)
		daym="0"+daym
	var hours=mydate.getHours()
	var minutes=mydate.getMinutes()
	var seconds=mydate.getSeconds()
	var dn="AM"
	if (hours>=12)
		dn="PM"
	if (hours==0)
		hours=00
	if (minutes<=9)
		minutes="0"+minutes
	if (seconds<=9)
		seconds="0"+seconds
	//change font size here
	var cdate="<medium><font color='666666' face='Arial'>"+daym+" "+montharray[month]+" "+year+" - "+hours+":"+minutes+":"+seconds+"</font></small>"
	if (document.all)
		document.all.clock.innerHTML=cdate
	else if (document.getElementById)
		document.getElementById("clock").innerHTML=cdate
	else
		document.write(cdate)
}

function goforit(){
	//if (document.all||document.getElementById)
	//setInterval("getthedate()",1000)
}

function makeNewWindow(theURL,winName,features) {
	var newWindow = null
	//test to see if window aleady exists
	if (!newWindow || newWindow.closed) {
		newWindow = window.open(theURL,winName,features);
	} else {
		//window exists, so load the proper page and bring it forward
		newWindow = window.open(theURL,winName,features);
		newWindow.location = theURL
		newWindow.focus();
	}
}
function reloadchild(){
	var hp = document.form.hp_id.value;
	var child = document.form.child_id.options[document.form.child_id.selectedIndex].value;
	if (child == -1 ) {
		var href='addChild.php?hp_id=hp';
		var windowname = 'Add Child';
		window.open(href, '', 'width=350,height=250');
		return false;
	}
}

function toggle(show) {
	if (show) {
		document.upload.style.visibility = "visible";
	} else {
		document.upload.style.visibility = "hidden";
	}
	setTimeout('document.images["upload"].src = "images/upload.gif"', 200);

}
	
function addbuddy(){
	var href='addBuddy.php';
	var windowname = 'Add Buddy';
	window.open(href, '', 'width=350,height=250');
	return false;

}	
