', '0', '');
function ShareToWebShare(type)
{
var url='';
switch(type)
{
case 1:
url = "http://www.facebook.com/sharer.php?u="+window.location.href;
break;
case 2:
url = "http://twitthis.com/twit?url="+window.location.href;
break;
case 3:
url = "http://linkhay.com/submitExt?link_url="+window.location.href+"&link_title=";
break;
}
var newWindow = window.open(url,'','_blank,resizable=yes');
newWindow.focus();
return false;
}