
$(document).ready(function()
{
	// chat w nowym oknie
	$(".openChat").click(function()
	{
		ref = $(this).attr("ref");
		window.open( $(this).attr("href"), "Chat"+ref, 'width=600, height=700' );
		return false;
	});

	   $(".openPhone").click(function()
	{
		ref = $(this).attr("ref");
		window.open( $(this).attr("href"), "Chat"+ref, 'width=300, height=200' );
		return false;
	});
	// chat w nowym oknie delaer
	$(".openDealerChat").click(function()
	{
		ref = $(this).attr("ref");
		window.open( $(this).attr("href"), "Chat"+ref, 'width=600, height=500' );
		return false;
	});
	$(".wizytowkaopen").click(function()
	{
		ref = $(this).attr("ref");
		window.open( $(this).attr("href"), "Wizytowka"+ref, 'width=1000, height=920,scrollbars=yes' );
		return false;
	});
	

});

