//<!--

//
// slideshow functions
//
function openSlide(sDN)
{
	var sScript = "slideshow.aspx"
	
	window.open(sScript+"?DN="+sDN,"_blank","menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width=620px,height=420px,center=1")
	//window.open(sScript+"?DN="+sDN,"_blank")
} 

function EmailValidate(Email)
{
	var re=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/;
	return re.test(Email);
}

/*

/// <summary>changes the location, used for sorting posts</summary>

*/

function changeLocation(oSelect)

{

      if(oSelect.selectedIndex != 0 && 

            oSelect.options[oSelect.selectedIndex].value != null && 

            oSelect.options[oSelect.selectedIndex].value != '')

      {

            window.location.href = oSelect.options[oSelect.selectedIndex].value;

      }

 

}


//-->