v_link = window.location;
v_title = document.title;
v_subj_feedback = "Bookshelf Feedback (SupportWeb, Siebel 7, MidMarket Edition, Version 7.0.x, May 2003 Edition)";
v_msg_feedback_1 = "\n\n\n----------------------------------\nWe appreciate your comments.\nTechnical Publications, Siebel Systems, Inc.\n\nDocument Information:\nTitle: ";
v_msg_feedback_2 = "\nFile: ";
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.";


//Send mail to siebel with document info
function mailFeedback() {
window.location = "mailto:doc@siebel.com" + "?subject=" + v_subj_feedback + "&body=" + escape(v_msg_feedback_1) + " " + document.title + escape(v_msg_feedback_2) + "<<" + v_link + ">>" + " ";
}

//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) + " ";
}


