v_link = window.location;
v_title = document.title;
v_subj_sub = "Subscribe to Siebel Bookshelf Update Notification";
v_subj_unsub = "Unsubscribe from Siebel Bookshelf Update Notification";
v_msg_sub_1 = "\nI wish to subscribe to the Siebel Bookshelf Update Notification service.\n\nPlease notify me when updated Siebel Bookshelf versions are made available on SupportWeb.\n\n------------------\nDocument Information:\nTitle: ";
v_msg_sub_2 = "\nFile: ";
v_msg_unsub = "\nPlease remove me from the Siebel Bookshelf Update Notification service.\n\nI do not wish to receive any further notification regarding updated Siebel Bookshelf versions on SupportWeb.";


//Subscribe to doc update notification
function docUpdateSubscribe() {
window.location = "mailto:docquality@siebel.com" + "?subject=" + v_subj_sub + "&body=" + escape(v_msg_sub_1) + " " + document.title + escape(v_msg_sub_2) + "<<" + v_link + ">>" + " ";
}

//Unsubscribe from doc update notification
function docUpdateUnsubscribe() {
window.location = "mailto:docquality@siebel.com" + "?subject=" + v_subj_unsub + "&body=" + escape(v_msg_unsub) + " ";
}


