/** *
*
* Filename: /vob/idenit/vm/supportApp/idenSupport/support/includes/support.js
* * Requirements Tracking:
* Tag: IDEN_APP_SEP_SUPP
* R#: R[4] & R[6]
* Spec Path: /vob/idenit/project_docs/iden_application_separation/design/@@main/1/Application_Separation_SDS.doc
* * Revision Information:
* Date: Author: Tracking #: Description:
* --------------- ------------------------ --------------------- ------------------------------------
* 20062003 RASHMI BHOJWANI MIRpn56910 FIRST DRAFT
*/
function getLanguages()
{
var product = document.frmManual.manual.options[document.frmManual.manual.selectedIndex].value;
if(product == "none" )
{
return false;
}
else
{
var urlManual = "/idenSupport/support/support_product_manuals_ko.jsp?productName=" + product;
location= urlManual;
}
}
function getManual()
{
var product = document.frmManual.manual.options[document.frmManual.manual.selectedIndex].value;
var lang = document.frmManual.lang.options[document.frmManual.lang.selectedIndex].value;
if(product == "none" || lang == "none")
{
return false;
}
else
{
var urlManual = contextpath + "/downloads/manuals/" + product + "_" + lang + ".pdf";
location= urlManual;
}
}
function getLanguagesMain()
{
var product = document.frmManual.manual.options[document.frmManual.manual.selectedIndex].value;
if(product == "none" )
{
return false;
}
else
{
var urlManual = contextpath +"/support_product_manuals_main.jsp?productName=" + product;
location= urlManual;
}
}