
var detailWindow = null;

function openDetailWindow(link)
{
	if (detailWindow != null && detailWindow.closed == false)
	{
		detailWindow.location = link.href;
		detailWindow.focus();
		return;
	}
	detailWindow = window.open(link.href, "_blank", "menubar=yes,toolbar=yes,width=650,height=500,status=yes,titlebar=yes, resizable=yes,scrollbars=yes,left=0,top=0", false);
}

function closeInfoWindow()
{
	detailWindow.close();
	detailWindow = null;
}

var homeWindow = null;

function openHomeWindow(link)
{
	homeUrl = link;
	if(homeUrl.indexOf("result.asp") != -1)
		return true;
	else
	{	
		if (homeWindow != null && homeWindow.closed == false)
		{
			homeWindow.location = homeUrl;
			homeWindow.focus();
			return false;
		}
		
		homeWindow = window.open(homeUrl, "_blank", "width=700,height=500,status=yes,titlebar=yes,location=yes; menubar=yes, directories=yes, toolbar=yes, resizable=yes,scrollbars=yes,left=0,top=0", false);
		return false;
		
	}
}

function closeInfoWindow()
{
	homeWindow.close();
	homeWindow = null;
}

