// JavaScript Document

<SCRIPT LANGUAGE="JavaScript">
<!-- 

var before    = "estherkirshenbaum";
var after     = "gmail";
var extension = "com";

function linkEk()
{

document.write ("<P>Please click this link to send email to Esther</P><BR />");
document.write ("<a href='mailto:" + before + "@" + after + "." + extension +"'>" + before + "@" + after + "." + extension + "</a>");


}
  

function popUp(URL,name) 
{
	var winpopup = window.open(URL,name,'scrollbars=1,resizable=1,width=640,height=640');
//	winpopup.window.location = URL;
	if ( window.focus ) {winpopup.focus();}
}


function popupimageWindow( URLstr, name, focusFlag )
{


	var imageWindow = 0;	
//	var winavailwidth = screen.availWidth;
//	var winX = ( winavailwidth - 850 ); 
	var winX = 25;
	var ns4 = (document.layers)? true:false
	var ie4 = (document.all)? true:false
	var winparams = "";
	
  if (ie4)
  {
     winparams = 'scrollbars=yes,resizable=yes,width=640,height=640,left='+winX;

  }
  else
  {
	 winparams = 'scrollbars=yes,resizable=yes,width=640,height=640,screenX='+winX;

  }


    if ( imageWindow && !imageWindow.closed )
    {
        if ( focusFlag )
        {  imageWindow.focus();   }
    }
    else
    {
	imageWindow = window.open('',name,winparams);
        if ( focusFlag )
        {      imageWindow.focus( );      }
        else
        {       self.focus();    }
    }

//    imageWindow.document.write('<p>Retrieving bookbag, please wait ...</p>');
    imageWindow.document.location = URLstr;
}
//--> 
</SCRIPT>

