

function set_send_url() {
// this function sets the url in the toolbar form for send this link feature //

	document.sendlink.url.value = window.document.location;

} // end function //


function submit_sendlink() {

set_send_url();
document.sendlink.submit();

}

function set_send_url_email() {
// this function sets the url in the toolbar form for send this link feature //

	document.newsletter.url.value = window.document.location;

} // end function //


function submit_sendlink_email() {

set_send_url_email();
document.newsletter.submit();

} // end function //


function openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}  // end function //

