﻿function getElementPosition(el){ var x=0; var y=0; while(el.offsetParent){ x+=el.offsetLeft; y+=el.offsetTop; el=el.offsetParent; } x+=el.offsetLeft; y+=el.offsetTop; return { x:x, y:y }; }
function showSocialMedia(abrir){
	var obj=document.getElementById("socialMediaIframe");
	if(abrir){
		var pos=getElementPosition(document.getElementById("_socialMediaBox")).y;
		obj.style.top=(pos-262)+"px";
		obj.style.display="block";
		//window.scrollTo(0, pos-332);
	}else{
		obj.style.display="none";
	}
}

var smUrl=window.location;
var smT=document.title;
var urlDelicious="http://del.icio.us/post?title="+encodeURIComponent(smT)+"&url="+encodeURIComponent(smUrl);
var urlDigg="http://www.digg.com/submit?phase=2&url="+escape(smUrl);
var urlTechnoratti="http://www.technorati.com/search/"+escape(smUrl);
var urlYahoo="http://myweb2.search.yahoo.com/myresults/bookmarklet?t="+escape(smT)+"&u="+smUrl;
var urlMeneame="http://meneame.net/submit.php?url="+escape(smUrl);
var urlFresqui="http://tec.fresqui.com/post?title="+encodeURIComponent(smT)+"&url="+encodeURIComponent(smUrl);
var urlFaceBook="http://www.facebook.com/share.php?u="+encodeURIComponent(smUrl);

document.write("<iframe id=\"socialMediaIframe\" name=\"socialMediaIframe\" width=\"628\" height=\"260\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" scrolling=\"no\"></iframe>");

document.write("<link href=\"/css/socialBookmarks745px.css\" type=\"text/css\" rel=\"stylesheet\" />\
<div class=\"socialBookmarkBox\" id=\"_socialMediaBox\">\
<div class=\"socialBookmark_topo\">\
<div class=\"socialBookmarkLink\"><a href=\"#\" onclick=\"showSocialMedia(true); return false;\">O que &eacute; isto?</a></div><div class=\"socialBookmark_topobox\">Compartilhe este link</div>\
</div>\
<div class=\"socialBookmarkConteudo\">\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoDelicious.gif\"/> <a rel=\"nofollow\" href=\""+urlDelicious+"\" target=\"_blank\">Del.icio.us</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoDigg.gif\"/> <a rel=\"nofollow\" href=\""+urlDigg+"\" target=\"_blank\">Digg</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoFacebook.gif\"/> <a rel=\"nofollow\" href=\""+urlFaceBook+"\" target=\"_blank\">Facebook</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoYahoo.gif\"/> <a rel=\"nofollow\" href=\""+urlYahoo+"\" target=\"_blank\">My Yahoo!</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoTechnorati.gif\"/> <a rel=\"nofollow\" href=\""+urlTechnoratti+"\" target=\"_blank\">Technorati</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoMeneame.gif\"/> <a rel=\"nofollow\" href=\""+urlMeneame+"\" target=\"_blank\">Men&eacute;ame</a></div>\
<div class=\"socialBookmarkItens\"><img src=\"/images/seo/icoFresqui.gif\"/> <a rel=\"nofollow\" href=\""+urlFresqui+"\" target=\"_blank\">Fresqui&nbsp;</a></div>\
</div>\
</div>");	   
			   
			   
var boxHTML="<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><link href=\"/css/socialBookmarks745px.css\" type=\"text/css\" rel=\"stylesheet\" />\
<style>html, body{ width: 100%; height: 100%; margin: 0px; padding: 0px; }</style></head><body>\
<div id=\"socialBookmarkBoxOque\"><h1>\
<a href=\"#\" onclick=\"parent.showSocialMedia(false); return false;\">Fechar X</a>\
Guarde, compartilhe e envie os conteúdos do Submarino Viagens \
</h1>\
<div></div>\
<ul>\
<li>\
<a href=\""+urlDelicious+"\" target=\"_blank\"><img src=\"/images/seo/icoDeliciousG.gif\" />Del.icio.us</a>\
É um serviço de favoritos (bookmarks) online no qual você guarda os conteúdos que mais lhe interessa organizando-os por palavras-chave.\
</li><li>\
<a href=\""+urlDigg+"\" target=\"_blank\"><img src=\"/images/seo/icoDiggG.gif\" />Digg</a>\
Site que reúne links para notícias, podcasts e vídeos enviados e avaliados pelos próprios usuários.\
</li><li>\
<a href=\""+urlFaceBook+"\" target=\"_blank\"><img src=\"/images/seo/icoFacebookG.gif\" />Facebook</a>\
É um site de relacionamento social que permite o compartilhamento de notícias, informações ou imagens com amigos.\
</li><li>\
<a href=\""+urlYahoo+"\" target=\"_blank\"><img src=\"/images/seo/icoYahooG.gif\" />Meu Yahoo!</a>\
O My Yahoo! é a página personalizada do Yahoo! que você pode organizar seus conteúdos preferidos e compartilhá-los com seus amigos.\
</li><li>\
<a href=\""+urlTechnoratti+"\" target=\"_blank\"><img src=\"/images/seo/icoTechnoratiG.gif\" />Technorati</a>\
É um motor de busca de blogs e um serviço de favoritos. Mostra também quantos sites apontam para um link.\
</li><li>\
<a href=\""+urlMeneame+"\" target=\"_blank\"><img src=\"/images/seo/icoMeneameG.gif\" />Menéame</a>\
É um serviço no qual o usuário indica conteúdos de seu interesse para que eles sejam avalidos por outros usuários.\
</li><li>\
<a href=\""+urlFresqui+"\" target=\"_blank\"><img src=\"/images/seo/icoFresquiG.gif\" />Fresqui</a>\
É um serviço no qual o usuário indica conteúdos de seu interesse para que eles sejam avalidos por outros usuários.\
</li>\
</ul>\
</div>\
</body></html>";

try{
	var win=document.frames.socialMediaIframe;
}catch(e){
	var win=window.socialMediaIframe;
}
win.document.open();
win.document.write(boxHTML);
win.document.close();