/*
	Nifty handler for social bookmarklet windows
*/

function bookmark(service)
{
	var fullURL = "http://www.honda.co.uk/cars/crz?s3campaign=Cars_CR-Z_product_page&s3advertiser=share_this&s3banner=_share_twitter&campaignid=CM357900W02A";
	var title = "Honda - CR-Z";
	var servURL;
	
	switch(service)
	{
		case "reddit":
			servURL = "http://reddit.com/submit?url=" + fullURL + "&title=" + title;
			break;
		
		case "twitter":
			servURL = "http://twitter.com/home?status="+fullURL;
			break;
		
		case "facebook":
			servURL = "http://www.facebook.com/sharer.php?u=" + fullURL + "&t=" + title;
			break;
		
		case "delicious":
			servURL = "http://delicious.com/post?v=4&noui&jump=close&url=" + fullURL + "&title=" + title;
			break;
		
		case "stumbleupon":
			servURL = "http://www.stumbleupon.com/submit?url=" + fullURL + "&fullURL=" + title;
			break;
		
		case "digg":
			servURL = "http://digg.com/remote-submit?phase=2&url=" + fullURL + "&title=" + title;
			break;
	};

	window = window.open(servURL, "", "width=700,resizable=yes,scrollbars=yes");
}
