function loginWindow( addr )
{
	w = window.open( addr, "saveSearch", "Scrollbars=0,resizable=0,width=470,height=530" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}

function saveSearch( addr, email )
{
	w = window.open( addr + "&email=" + email, "saveSearch", "Scrollbars=0,resizable=0,width=470,height=570" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}
function saveListing( param )
{
	w = window.open( "saveListing.do?" + param, "saveListing", "Scrollbars=0,resizable=0,width=300,height=300" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}
function sendListing( param )
{
	w = window.open( "emailSelection.jsp?" + param, "emailSelection", "Scrollbars=0,resizable=0,width=470,height=490" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}

function saveListing1( param )
{
	w = window.open( param, "saveListing", "Scrollbars=0,resizable=0,width=300,height=300" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}
function sendListing1( param )
{
	w = window.open( param, "emailSelection", "Scrollbars=0,resizable=0,width=470,height=490" );
	if (w.opener == null)
		w.opener = self;
	w.focus();
}

