var newWindow;
var mLatLong;
var mInfo;

function MapPop( latLong, info )
{
	newWindow = window.open( 'mappopup.html', 'MapPopup', 'width=525,height=400,resizable=yes' );
	mLatLong  = latLong;
	mInfo = info;
}

function deferredMapPop()
{
	newWindow.document.getElementById( "latLong" ).value  = mLatLong;	
	newWindow.document.getElementById( "info" ).value = mInfo;	
	newWindow.document.getElementById( "loadMapButton" ).click();
	newWindow.focus();
}