﻿// JScript File


function addMetaInfo()
{
	var metaArray=document.getElementsByTagName("meta");
	var metaInfoArray = new Array('holidays','');
	for(var i=0; i<metaArray.length; i++)
	{
		if(metaArray[i].name.toLowerCase()=='keywords') metaInfoArray[0]=metaArray[i].content;
		if(metaArray[i].name.toLowerCase()=='description') metaInfoArray[1]=metaArray[i].content;
	}
	return metaInfoArray;
}
function bookmarkPage(type)
{
	var windowString = '';
  	        

        if(type=='google') windowString='http://www.google.com/bookmarks/mark?op=add&amp;title='+encodeURIComponent(document.title)+'&bkmk='+encodeURIComponent(location.href)+'&labels='+addMetaInfo()[0]+'&annotation='+addMetaInfo()[1];
        if(type=='delicious') windowString='http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title);
	       
       if(type=='digg') windowString='http://digg.com/submit?phase=2&url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)+'&amp;bodytext='+encodeURIComponent(document.description)+'&amp;topic="news"';
           if(type=='reddit') windowString='http://reddit.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title);   
       
    if(type=='facebook') windowString='http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title);
     window.open(windowString,type,'toolbar=no,height=550,width=780,resizable=yes,status=yes,scrollbars=yes'); 
}

