function shareThisHandler( recipeId, lang ) {
//		mwGenerateshareThisHandler(recipeId, lang);
	mwGenerateshareThisWindow(recipeId, lang);
}

function getUrlParam(paramname)
{
	paramname = paramname.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");

	var regexquery = "[\\?&]"+paramname+"=([^&#]*)";
	var regex = new RegExp( regexquery );
	var results = regex.exec( window.location.href );

	if ( results == null )
		return false;
	else
		return results[1];
}


function mwGenerateshareThisWindow(recipe, lang) {

	var iframepre = "";

	if(getUrlParam('siteid') == 'philadelphia2-stg') {
		iframepre = "http://www.philadelphia.misc1.kraft-staging.net";
	}

	var sharethisurl = iframepre + "/iframe/caen/sharethis/index.php?lang=" + lang + "&recipeId=" + recipe + "&popLayerId=homeflashlayer";
	mwwindow = window.open(sharethisurl, "sharethiswindow1", "width=315,height=347,status=no,location=no,toolbar=no,scrollbars=no,resizable=no");
	mwwindow.focus();
}

function mwGenerateshareThisHandler(recipe, lang) {
	
	var container = document.getElementById("AddThiscontainer");
	var txt_title =  "Where are you cheesy?";
	var sharethisurl = document.URL + "&amp;lang=" + lang + "&amp;recipeId=" + recipe + "&amp;popLayerId=homeflashlayer";
		

	var addthisbuttontagjs = "<script type=\"text\/javascript\">addthis_open(this, '','" + sharethisurl + "', '" + txt_title + "');<\/script>";
	var addthisbuttontag = "<div id=\"AddThisCCC\" class=\"addthiscontent\"><a href=\"http://www.addthis.com/bookmark.php?v=250&pub=blazeofcolours\" onmouseover=\"return addthis_open(this, '', '" + sharethisurl + "', '" + txt_title + "')\" onclick=\"return addthis_sendto()\" onmouseout=\"return addthis_close()\" ><img src=\"http://s7.addthis.com/static/btn/lg-share-en.gif\" width=\"125\" height=\"16\" alt=\"Bookmark and Share\" style=\"border:0\"\/><\/a><script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js?pub=blazeofcolours\"><\/script><\/div>";

	if($('AddThisCCC')) {
		$('AddThisCCC').remove();
	}

	$('AddThisContentcontainer').insert(addthisbuttontag);
//	$('AddThisContentcontainer').show();	
}

//Event.observe(window, 'load',mw_domloaded , false);


