function EmailWin(url) {


var PopWindow = window.open(url,"EmailWin","height=550,width=760,directories=no,toolbar=no,resizable=no,menubar=no,scrollbars=yes");


 self.name = "main";


 PopWindow.focus();


}

function adjust_container_height ()

{

	var height=document.getElementById('container').offsetHeight;

	if (height < 812)

	{
		document.getElementById('container').style.height="812px";
	}

} // Set a default height for the container so smaller pages appear consistent with others [ Adjust Container Height ]

function PopUp(url) {

 var PopWindow = window.open(url,"PopWindow","height=400,width=400,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=yes");

 PopWindow.focus();

}

function PopUpClip(url) {

 var PopWindow = window.open(url,"PopWindow","height=300,width=320,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=no");

 PopWindow.focus();
}