﻿// JScript File

var url = window.location.href;
url = url.replace(/{/,'');
var subject = getTitle(); 
var ahref = 'http://www.vecohio.com/';

var urlTotal = "mailto:?body=This email has been sent to you by a visitor to the " + ahref + " web site who would like to share the following page:%0A" + url + "%0A%0A%0A%0A%0A%0A-----------------------------------%0AThis page copyright Valley Electric Consolidated, all rights reserved.%0A-----------------------------------&subject=" + subject;
document.getElementById("ctl00_veValleyPrintArea_mailToPage").href=urlTotal;


function getTitle()
{
    var t = document.getElementsByTagName('title')[0];
    if ( !!t.childNodes.length ) {
        return t.firstChild.data;
    } else if ( t.innerHTML ) {
    return t.innerHTML;
    }
}