var map = '';
var price = '';

function popMap(ref)
{
	var left = (screen.width-530)/2;
	var top = (screen.height-380)/2;

	if (!map.closed && map.location)
	{
		map.location.href = "/map/map.php?ref="+ref+"";
	}
	else
	{
		map=window.open("/map/map.php?ref="+ref+"",'mapWindow','status = 0, height = 380, width = 530, resizable = 0,top=' + top + ',left=' + left + '');
		if (!map.opener) map.opener = self;
	}
	if (window.focus)
	{
		map.focus();
	}
}


function popPrice()
{
	var left = (screen.width-185)/2;
	var top = (screen.height-235)/2;

	if (!price.closed && price.location)
	{
		price.location.href = "/price/price.html";
	}
	else
	{
		price=window.open("/price/price.html",'priceWindow','status = 0, height = 235, width = 185, resizable = 0,top=' + top + ',left=' + left + '');
		if (!price.opener) price.opener = self;
	}
	if (window.focus)
	{
		price.focus();
	}
}