function getSearch(){
	var search = form.search.value;
	self.location='processSearch.php@search=' + search;
}

function addbookmark() {
	 bookmarkurl="default.htm"
	 bookmarktitle="achildbirth.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=form.hp_id.value;
	var child = form.child_id.options[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;

}	


/**
* Dreamweaver hide/show functions
*/
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function P7_autoShowHide() { //v1.2 by PVII-www.projectseven.com
 var g,b,k,f,ag=arguments,a=parseInt(ag[0]);
 if(!document.p7setc){p7c=new Array();document.p7setc=true;for(var u=0;u<10;u++){
 p7c[u]=new Array();}}for(k=0;k<p7c[a].length;k++){if((g=MM_findObj(p7c[a][k]))!=null){
 b=(document.layers)?g:g.style;b.visibility="hidden";}}for(k=1;k<ag.length;k++){
 if((g=MM_findObj(ag[k]))!=null){b=(document.layers)?g:g.style;b.visibility="visible";
 f=false;for(var j=0;j<p7c[a].length;j++){if(ag[k]==p7c[a][j]){f=true;}}
 if(!f){p7c[a][p7c[a].length++]=ag[k];}}}
}