// JavaScript Document
//var faceBookU="http://www.facebook.com/sharer.php?u=";
function shareFaceBook(){
	//pageUrl=document.URL;
	sharePath=document.URL;
	newPath=encodeURIComponent(sharePath.replace("#", "%23"));
	//newPath=encodeURIComponent(sharePath);
	tmpPath="http://www.facebook.com/sharer.php?u="+newPath;
	//alert(newPath);
	window.open(tmpPath);
	//alert(encodeURI(tmpPath));
}
function shareGoogle(){
	//pageUrl=document.URL;
	sharePath=encodeURIComponent(document.URL);
	//newPath=encodeURIComponent(sharePath);
	//tmpPath=encodeURI("http://www.google.com/bookmarks/mark?op=edit&bkmk="+window.location.href+"&title="+document.title);
	tmpPath="http://www.google.com/bookmarks/mark?op=edit&bkmk="+sharePath+"&title="+document.title;
	//alert(tmpPath);
	window.open(tmpPath);
}
function shareDelicious(){
	//pageUrl=document.URL;
	sharePath=document.URL;
	newPath=sharePath.replace("#", "%23");
	tmpPath="http://delicious.com/save?url="+newPath+"&title="+document.title;
	window.open(tmpPath);
}
function shareStumbleupon(){
	//pageUrl=document.URL;
	sharePath=document.URL;
	tmpPath=encodeURI("http://www.stumbleupon.com/submit?url="+sharePath+"&title="+document.title);
	window.open(tmpPath);
}
function shareMyspace(){
	sharePath=document.URL;
	tmpPath="http://www.myspace.com/Modules/PostTo/Pages/?t="+document.title+"&u="+sharePath+"&c=<img src='http://www.annasui.com/en/images/shareThumb.jpg' />";
	//tmpPath="http://www.myspace.com/Modules/PostTo/Pages/?t="+document.title+"&u="+sharePath+"&c=<img src='http://viewroom.eurorscg.com.hk/annasui/global/en/images/shareThumb.jpg' />";
	//tmpPath=encodeURI("http://www.myspace.com/Modules/PostTo/Pages/?t="+document.title+"&u="+window.location.href);
	window.open(tmpPath);
}
/*
function EncodeURL(path){
	var newPath=path.replace(/#/, "%23");
	return newPath;
}
*/