$("document").ready(function() {
	$(".galleryLink").click(function () {
		openGallery(this.name);
		return false;
	});
});

function openGallery(id)
{
	var target = id.split("user");
	var user_id = target[1];
	
	var height = 650;
	var width = 825;
	var newLeft = (window.screen.availWidth - width) / 2;
	var newHeight = (window.screen.availHeight - height) /2;
	var url = 'index.cfm/method/main.asso_gallery/id=' + user_id;
	var objPopup = window.open(url,'detailWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + newHeight + ',toolbar=0,menubar=0,status=0,scrollbars=0,directories=0');
}

		function openUrl(site)
		{
			var top = 50;
			var height = 700;
			var width = 950;
			var url = "index.cfm/method/main.link_tracker/site/" + site;
			var newLeft = (window.screen.availWidth - width) / 2;
			var newHeight = (window.screen.availHeight - height) /2;
			var objPopup = window.open(url,'detailWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + top + ',toolbar=1,menubar=1,status=1,scrollbars=1,location=1,resizable=1,directories=0');
			objPopup.focus();
		}
		
		function openSS(id)
		{
			//var ssId = id.split("ss");
			var width = 900;
			var height = 680;
			var newLeft = (window.screen.availWidth - width) / 2;
			var newHeight = (window.screen.availHeight - height) /2;
			//var url = 'index.cfm?method=main.ss&ss_id=' + ssId[1];
			var url = 'http://www.nationalsculpture.org/Slideshows/index.cfm?method=main.ss&ss_id=' + id;
			var objSS = window.open(url,'detailWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=' + newHeight + ',menubar=0,status=0,scrollbars=0,directories=0,resizable=1');
			objSS.focus();
		}