function funcOpenFormWindow( strTheUrl )
{	
	var strWindowFeatures = "width=500,height=550,scrollbars=yes,resizable=yes,toolbar=no,menubar=yes,location=no,status=yes,directories=no,copyhistory=no,left=0,top=0,screenX=0,screenY=0";
	var strWindowName = "winForm";
	theWindow = window.open(strTheUrl,strWindowName,strWindowFeatures);
}



function funcOpenPhotoViewerWindow( strTheCollectionName )
{	
	var strCollectionName = strTheCollectionName.replace(/ /g,'+');

	//alert(strCollectionName);

	var strURL = "photoViewer.php?collectionName=" + strCollectionName;
	var strWindowFeatures = "width=550,height=600,scrollbars=no,resizable=no,toolbar=no,menubar=no,location=no,status=no,directories=no,copyhistory=no,left=0,top=0,screenX=0,screenY=0";
	var strWindowName = "winPhotoViewer";
	theWindow = window.open(strURL,strWindowName,strWindowFeatures);
}


function funcSendEmail()
{

	var strFromEmail = document.frmEmail.txtFromEmail.value;

	if (strFromEmail == "")
	{ 
		alert('Please enter your email address.'); 
	}
	else
	{
		var strURL = "sendEmail.php?email=" + strFromEmail;
		var strWindowFeatures = "width=300,height=150,scrollbars=no,resizable=no,toolbar=no,menubar=no,location=no,status=no,directories=no,copyhistory=no,left=0,top=0,screenX=0,screenY=0";
		var strWindowName = "winSendEmail";
		theWindow = window.open(strURL,strWindowName,strWindowFeatures);

		document.frmEmail.txtFromEmail.value = "";
	}
}



