﻿$(document).ready(function() 
{
	$("a.openMaps").click(function() 
	{
		return openMaps(this.href);
	});
 
	$(".openMapsCont a").click(function() 
	{
		return openMaps(this.href);
	});
	
	$(".openDemo").colorbox({width:"845", height:"670"});
});

function openMaps(href)
{
	window.open(href, "popup", "width=980, height=620");
	return false;
}
