// JavaScript Document

// AddThis button
function addthis_button()
{	
	addthis_pub             = 'paveylaw'; 
	addthis_logo_background = 'EFEFFF';
	addthis_logo_color      = '666699';
	addthis_brand           = 'Paveylaw.com';
	addthis_options         = 'favorites, email,myspace, facebook, google, live,delicious, digg,technorati,myweb,ask,more';
	
	document.write("<a href='http://www.addthis.com/bookmark.php' onmouseover=\"return addthis_open(this, '', '[URL]', '[TITLE]')\" onmouseout='addthis_close()' onclick='return addthis_sendto()'>Bookmark</a>");
}

//Opens an html page in a printer-friendly version and pops up the print window at the same time
function openForPrinting()
{ 
	var display_setting="toolbar=yes, location=no, directories=no, menubar=yes,"; 
    	display_setting+="scrollbars=yes, width=800, height=600, left=50, top=5"; 
  
	var print_content=document.getElementById("print-content").innerHTML; 
  	var new_page_title=document.title;
  
  	var popup_window=window.open("","",display_setting); 
   	popup_window.document.open(); 
   	popup_window.document.write('<html><head>');
   	popup_window.document.title=new_page_title;
   	popup_window.document.write('<link href="css/default.css" type="text/css" rel="stylesheet" />');
	popup_window.document.write('<link href="css/template.css" type="text/css" rel="stylesheet" />');   	
	popup_window.document.write('<link href="css/main-menu.css" type="text/css" rel="stylesheet" />');
	popup_window.document.write('<link href="css/index.css" type="text/css" rel="stylesheet" />');
	popup_window.document.write('<link href="css/content.css" type="text/css" rel="stylesheet" />');
	popup_window.document.write('</head><body onLoad="self.print()">');   	
   	popup_window.document.write(print_content);
   	popup_window.document.write('</body></html>'); 
   	popup_window.document.close(); 		//closes the document for writing
   	popup_window.focus(); 
}

function print_email_add(a,b,c,d,title)
{
  emailE=a+b+'@'+c+d;
  if(title==""){
	  title=emailE;
  }
  document.write(
  '<A HREF="mailto:' + emailE + '">' 
    + title + '</a>'
)
}

