$(function(){
		
	$("img[title]").tooltip({
		// a little tweaking of the position
		offset: [-20, 0],

		// use the built-in fadeIn/fadeOut effect
		effect: "fade"
	});
	
	$("div[title]").tooltip({
		// a little tweaking of the position
		offset: [-20, 0],

		// use the built-in fadeIn/fadeOut effect
		effect: "fade"
	});
	
	$('.getogcmarks').click(function(e) {
		
		e.preventDefault();
		
		var $this = $(this);
		var horizontalPadding = 30;
		var verticalPadding = 30;
		
		$('<iframe id="externalSite" class="externalSite" src="' + this.href + '" />').dialog({
		    title: ($this.attr('title')) ? $this.attr('title') : 'External Site',
		    autoOpen: true,
		    //minHeight: 900,
		    //minWidth: 900, 
		    width: 800,
		    height: 700,
		    zIndex: 3999,
		    modal: true,
		    resizable: true,
		    autoResize: true,
		    overlay: {
		        opacity: 0.5,
		        background: "black"
		    }
		}).width(800 - horizontalPadding).height(700 - verticalPadding);
	});
});


sendplpayment = function(element)
{
	window.setTimeout("window.location = \'OgcOpenMyGolfer.php\'",2000);
};
