	function checkForm() 
	{
		var f = document.forms.length;
		var i = 0;
		var pos = -1;
		while( pos == -1 && i < f ) 
		{
			var e = document.forms[i].elements.length;
			var j = 0;
			while( pos == -1 && j < e )
			{
				if ( document.forms[i].elements[j].type == 'text' )
				{
					pos = j;
				}
				j++;
			}
			i++;
		}
		if( pos >= 0 )
		{
			document.forms[i-1].elements[pos].focus();
		}
	}
	var newwindow = ''
	function popitup(url,w,h)
	{
		wt = parseFloat(w) + 14;
		if (navigator.userAgent.indexOf("Firefox")!=-1)
		{
 			ht = parseFloat(h) + 20;
		}
		else
		{
			ht = parseFloat(h) + 20;
		}
		if (newwindow.location && !newwindow.closed)
		{
    			newwindow.location.href = url;
    			newwindow.focus();
		}
		else
		{
    			newwindow=window.open(url,'htmlname','width='+wt+',height='+ht+',resizable=1');
		}
	}
	function bigger(img,w,h)
	{
		if (w < 400)
		{
		 nw = 400;
		}
		else
		{
		 nw = w;
		}
		url="/image.cgi?im="+img;
		popitup(url,nw,h);
	}
	function buy()
	{
		//var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no,width=700,height=345,screenX=100,screenY=100";
		//var whatpage = "http://www.momentousgift.com/add_to_cart.cgi?sid="+sid+"\&id="+id;
		//popup = window.open(whatpage, "Cart", windowprops);
		
		alert('The SHOPPING CART feature is currently under construction.\n\nTo order, or for ordering questions, please click CONTACT at the bottom of the page and send us an inquiry regarding your product(s) and someone will get back to you as soon as possible!\n\nThanks for visiting momentousgift.com!');
		alert('The product you requested is currently out of stock.\n\nPlease go to CONTACT and inquire about the product so that we may better serve you!');
		
	}
	