/**
 * @author mediaowlman
 */

$(document).ready(function() { });

function setPopupId(id, type) {

	$("div#popupContact div#contactArea").load("doc/popup_doc.php?id=" + id + "&type=" + type);
	setTimeout(function(){
		showPopup();
	}, 100);
	
}

function encodeURLFacebook(url) {
	
	//alert(encodeURIComponent(url));
	return encodeURIComponent(url);
}

