// JavaScript Document

function checkGiftReg()
{
	
	var theuser = document.getElementById('userid').value;
	//alert('checking '+theuser);
	if (theuser == "notloggedin") 
	{
		// go to the registration/log in page
		//alert('lol');
		window.open("http://www.edibleblooms.com/GiftRegistration","_self"); 
	}
	else
	{
		 // go directly to the ift reminder page view
		window.open("http://www.edibleblooms.com/View-Gift-Registrations","_self"); 
	}
	
}
