//share facebook link


function openPopup(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function shareFacebook(productId, productName) {
	
	if (productId == null) {
		productId = '';	
	}
	
	if (productName == null) {
		productName = '';	
	}
	
  	if (productId != null) {
		
		var openURL = "http://www.facebook.com/share.php?u=http://www.supergoop.com/shop/index.php/action/item/id/"+productId + "/&t=" + productName;
		
		openPopup(openURL,'facebook','menubar=yes,scrollbars=yes,resizable=yes,width=800,height=500');
	}
}

function shareTwitter(productId, productName) {
	
	if (productId == null) {
		productId = '';	
	}
  	
	if (productName == null) {
		productName = '';	
	}
	
  	if (productId != null) {
		
		var openURL = "http://twitter.com/home?status==http://www.supergoop.com/shop/index.php/action/item/id/"+productId + "/&title=" + productName;
		
		openPopup(openURL,'twitter','menubar=yes,scrollbars=yes,resizable=yes,width=800,height=500');
	}
}
