<!--
/**************************************************************************************************************************/
/************************************************* Start of Script Sheets *************************************************/
/**************************************************************************************************************************/
function openWindow(path){
var myWin = window.open(path);
}
var lastActiveId = '';
var menuClickedColor = 'lightgreen';
var menuOutColor = 'white';
var menuOverColor ='white';
var subMenuOutColor ='white';
var subMenuOverColor ='white';
var menuOutBackGroundColor ='grey';
var menuOverBackGroundColor ='#111111';
var subMenuOutBackGroundColor ='grey';
var subMenuOverBackGroundColor ='black';
var menuWeight = 'bold';
var subMenuWeight = 'bold';
function getLastUsedMenuClickedId(){
return lastUsedMenuClickedId;
}
function cssDom(id,css,value){
var obj = document.getElementById(id);
var styleObj = document.getElementById(id).style;
if(css== 'background') styleObj.background = value; 
else if(css== 'backgroundAttachment') styleObj.backgroundAttachment = value; 
else if(css== 'backgroundColor') styleObj.backgroundColor = value; 
else if(css== 'backgroundImage') styleObj.backgroundImage = 'URL('+value+')'; 
else if(css== 'backgroundPosition') styleObj.backgroundPosition = value; 
else if(css== 'backgroundRepeat') styleObj.backgroundRepeat = value; 
else if(css== 'backgroundSize') styleObj.backgroundSize = value; 
else if(css== 'border') styleObj.border = value; 
else if(css== 'borderBottom') styleObj.borderBottom = value; 
else if(css== 'borderBottomColor') styleObj.borderBottomColor = value; 
else if(css== 'borderBottomStyle') styleObj.borderbottomstyle = value; 
else if(css== 'borderBottomWidth') styleObj.borderBottomWidth = value; 
else if(css== 'borderColor') styleObj.borderColor = value; 
else if(css== 'borderCollapse') styleObj.borderCollapse = value; 
else if(css== 'borderLeft') styleObj.borderLeft = value; 
else if(css== 'borderLeftColor') styleObj.borderLeftColor = value; 
else if(css== 'borderLeftStyle') styleObj.borderLeftStyle = value; 
else if(css== 'borderLeftWidth') styleObj.borderLeftWidth = value; 
else if(css== 'borderRight') styleObj.borderRight = value; 
else if(css== 'borderRightColor') styleObj.borderRightColor = value; 
else if(css== 'borderRightStyle') styleObj.borderRightStyle = value; 
else if(css== 'borderRightWidth') styleObj.borderRightWidth = value; 
else if(css== 'borderStyle') styleObj.borderStyle = value; 
else if(css== 'borderSpacing') styleObj.borderspacing = value; 
else if(css== 'borderTop') styleObj.borderTop = value; 
else if(css== 'borderTopColor') styleObj.borderTopColor = value; 
else if(css== 'borderTopStyle') styleObj.borderTopStyle = value; 
else if(css== 'borderTopWidth') styleObj.borderTopWidth = value; 
else if(css== 'borderWidth') styleObj.borderWidth = value; 
else if(css== 'bottom') styleObj.bottom = value; 
else if(css== 'captionSide') styleObj.captionSide = value; 
else if(css== 'checked') obj.checked = value; 
else if(css== 'clear') styleObj.clear = value; 
else if(css== 'clip') styleObj.clip = value; 
else if(css== 'color') styleObj.color = value; 
else if(css== 'content') styleObj.content = value; 
else if(css== 'counterIncrement') styleObj.counterIncrement = value; 
else if(css== 'counterReset') styleObj.counterReset = value; 
else if(css== 'cursor') styleObj.cursor = value; 
else if(css== 'direction') styleObj.direction = value; 
else if(css== 'display') styleObj.display = value; 
else if(css== 'emptyCells') styleObj.emptyCells = value; 
else if(css== 'float') styleObj.float = value; 
else if(css== 'font') styleObj.font = value; 
else if(css== 'fontFamily') styleObj.fontFamily = value; 
else if(css== 'fontSize') styleObj.fontSize = value; 
else if(css== 'fontStyle') styleObj.fontStyle = value; 
else if(css== 'fontVariant') styleObj.fontVariant = value; 
else if(css== 'fontWeight') styleObj.fontWeight = value; 
else if(css== 'height') styleObj.height = value; 
else if(css== 'innerHTML') obj.innerHTML = value; 
else if(css== 'left') styleObj.left = value; 
else if(css== 'letterSpacing') styleObj.letterSpacing = value; 
else if(css== 'lineHeight') styleObj.lineHeight = value; 
else if(css== 'listStyle') styleObj.listStyle = value; 
else if(css== 'listStyleImage') styleObj.listStyleImage = value; 
else if(css== 'listStylePosition') styleObj.listStylePosition = value; 
else if(css== 'listStyleType') styleObj.listStyleType = value; 
else if(css== 'margin') styleObj.margin = value; 
else if(css== 'marginBottom') styleObj.marginBottom = value; 
else if(css== 'marginLeft') styleObj.marginLeft = value; 
else if(css== 'marginRight') styleObj.marginRight = value; 
else if(css== 'marginTop') styleObj.margintop = value; 
else if(css== 'maxHeight') styleObj.maxHeight = value; 
else if(css== 'maxWidth') styleObj.maxWidth = value; 
else if(css== 'minHeight') styleObj.minHeight = value; 
else if(css== 'minWidth') styleObj.minWidth = value; 
else if(css== 'opacity') {
//Firefox
styleObj.opacity = value;
//IE
styleObj.filters.alpha.opacity = value*100;
 }
else if(css== 'orphans') styleObj.orphans = value; 
else if(css== 'outline') styleObj.outline = value; 
else if(css== 'outlineColor') styleObj.outlineColor = value; 
else if(css== 'outlineStyle') styleObj.outlineStyle = value; 
else if(css== 'outlineWidth') styleObj.outlineWidth = value; 
else if(css== 'overflow') styleObj.overflow = value; 
else if(css== 'padding') styleObj.padding = value; 
else if(css== 'paddingBottom') styleObj.paddingBottom = value; 
else if(css== 'paddingLeft') styleObj.paddingLeft = value; 
else if(css== 'paddingRight') styleObj.paddingRight = value; 
else if(css== 'paddingTop') styleObj.paddingTop = value; 
else if(css== 'pageBreakAfter') styleObj.pageBreakAfter = value; 
else if(css== 'pageBreakBefore') styleObj.pageBreakBefore = value; 
else if(css== 'pageBreakInside') styleObj.pageBreakInside = value; 
else if(css== 'position') styleObj.position = value; 
else if(css== 'quotes') styleObj.quotes = value; 
else if(css== 'right') styleObj.right = value; 
else if(css== 'tableLayout') styleObj.tableLayout = value; 
else if(css== 'textAlign') styleObj.textAlign = value; 
else if(css== 'textDecoration') styleObj.textDecoration = value; 
else if(css== 'textIndent') styleObj.textIndent = value; 
else if(css== 'textShadow') styleObj.textShadow = value; 
else if(css== 'textTransform') styleObj.textTransform = value; 
else if(css== 'top') styleObj.top = value;
else if(css== 'verticalAlign') styleObj.verticalAlign = value; 
else if(css== 'visibility') styleObj.visibility = value; 
else if(css== 'whiteSpace') styleObj.whiteSpace = value; 
else if(css== 'widows') styleObj.widows = value; 
else if(css== 'width') styleObj.width = value; 
else if(css== 'wordSpacing') styleObj.wordSpacing = value; 
else if(css== 'zIndex') styleObj.zIndex = value; 
}
function getBrowserType(){
if(navigator.appName == "Netscape"){
return "Netscape";
}
else if(navigator.appName == "Microsoft Internet Explorer"){
return "IE";
}
else{
return navigator.appName;
}
}
function stopEvents(evt){
evt = (evt) ? evt: ((window.event) ? window.event: null);
if(getBrowserType() == 'IE'){
evt.cancelBubble = true;
}
else{
evt.stopPropagation();
}
}
function setDisplayOfIdArray(array,mode,evt){
for(var i=0;i<array.length;i++){
cssDom(array[i],'display',mode);//cssDom('element Id','display','display mode: none, inline, block, etc')
}
if(evt != null) stopEvents(evt);
}
function setMenuProperties(id,fontFamily,fontSize,fontStyle,fontWeight,fontColor,fontBackGroundColor){
cssDom(id,'backgroundColor',fontBackGroundColor);//cssDom('element Id','height','5px')
if(fontFamily != "") cssDom(id,'fontFamily',fontFamily);//cssDom('element Id','height','5px')
if(fontSize != null) cssDom(id,'fontSize',fontSize+'px');//cssDom('element Id','height','5px')
if(fontStyle  != "") cssDom(id,'fontStyle',fontStyle);//cssDom('element Id','height','5px')
if(fontWeight  != "") cssDom(id,'fontWeight',fontWeight);//cssDom('element Id','height','5px')
if(fontColor  != "") cssDom(id,'color',fontColor);//cssDom('element Id','height','5px')
}
function setLastMenuProperties(func,fontFamily,fontSize,fontStyle,fontWeight,fontColor,fontBackGroundColor){
var id = func;
cssDom(id,'backgroundColor',fontBackGroundColor);//cssDom('element Id','height','5px')
if(fontFamily != "") cssDom(id,'fontFamily',fontFamily);//cssDom('element Id','height','5px')
if(fontSize != null) cssDom(id,'fontSize',fontSize+'px');//cssDom('element Id','height','5px')
if(fontStyle  != "") cssDom(id,'fontStyle',fontStyle);//cssDom('element Id','height','5px')
if(fontWeight  != "") cssDom(id,'fontWeight',fontWeight);//cssDom('element Id','height','5px')
if(fontColor  != "") cssDom(id,'color',fontColor);//cssDom('element Id','height','5px')
}
var lastUsedMenuClickedId = "menuItem_37";
function setLastUsedMenuClickedId(id){
lastUsedMenuClickedId = id;
}
function getLastUsedTopMenuClickedId(){
return lastUsedTopMenuClickedId;
}
function setLastMenuClickedProperties(func,fontFamily,fontSize,fontStyle,fontWeight,fontColor,fontBackGroundColor){
var id = func;
cssDom(id,'backgroundColor',fontBackGroundColor);//cssDom('element Id','height','5px')
if(fontFamily != "") cssDom(id,'fontFamily',fontFamily);//cssDom('element Id','height','5px')
if(fontSize != null) cssDom(id,'fontSize',fontSize+'px');//cssDom('element Id','height','5px')
if(fontStyle  != "") cssDom(id,'fontStyle',fontStyle);//cssDom('element Id','height','5px')
if(fontWeight  != "") cssDom(id,'fontWeight',fontWeight);//cssDom('element Id','height','5px')
if(fontColor  != "") cssDom(id,'color',fontColor);//cssDom('element Id','height','5px')
}
var lastUsedTopMenuClickedId = "menutext_35";
function setLastUsedTopMenuClickedId(id){
lastUsedTopMenuClickedId = id;
}
function pictureShowTimeout(){
clearTimeout(pictureShowTimePointer);
}
function populateArray(pictureShowArraySolutions,pictureShowSolutionsTotalPics){
for(var i=0;i<pictureShowSolutionsTotalPics;i++){
pictureShowArraySolutions[pictureShowArraySolutions.length] = i+1;
}
}
var windowIdCountSolutions = -1;
var pictureShowTimePointer;
var pictureShowSolutionsTotalPics = 25;
var pictureShowSolutionsTime = 4500;
var pictureShowArraySolutions = new Array();
populateArray(pictureShowArraySolutions,pictureShowSolutionsTotalPics);
function pictureShowSolutions(){
if(windowIdCountSolutions == pictureShowArraySolutions.length-1) windowIdCountSolutions = 0;
else windowIdCountSolutions++;
document.getElementById('div_40').style.backgroundImage = "url('graphics/"+pictureShowArraySolutions[windowIdCountSolutions]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowSolutions()",pictureShowSolutionsTime);
}
function onResizeWindow(id,width){
if (window.innerWidth){
cssDom(id,'left',(window.innerWidth - width)/2+'px');//cssDom('element Id','height','5px')
}
else {
cssDom(id,'left',(( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) - width)/2+'px');//cssDom('element Id','height','5px')
}
}
var windowIdCountDetails = -1;
var pictureShowTimePointer;
var pictureShowDetailsTotalPics = 25;
var pictureShowDetailsTime = 4500;
var pictureShowArrayDetails = new Array();
populateArray(pictureShowArrayDetails,pictureShowDetailsTotalPics);
function pictureShowDetails(){
if(windowIdCountDetails == pictureShowArrayDetails.length-1) windowIdCountDetails = 0;
else windowIdCountDetails++;
document.getElementById('div_40').style.backgroundImage = "url('graphics/"+pictureShowArrayDetails[windowIdCountDetails]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowDetails()",pictureShowDetailsTime);
}
var windowIdCountHowto = -1;
var pictureShowTimePointer;
var pictureShowHowtoTotalPics = 25;
var pictureShowHowtoTime = 4500;
var pictureShowArrayHowto = new Array();
populateArray(pictureShowArrayHowto,pictureShowHowtoTotalPics);
function pictureShowHowto(){
if(windowIdCountHowto == pictureShowArrayHowto.length-1) windowIdCountHowto = 0;
else windowIdCountHowto++;
document.getElementById('div_497').style.backgroundImage = "url('graphics/"+pictureShowArrayHowto[windowIdCountHowto]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowHowto()",pictureShowHowtoTime);
}
var windowIdCountHome = -1;
var pictureShowTimePointer;
var pictureShowHomeTotalPics = 25;
var pictureShowHomeTime = 4500;
var pictureShowArrayHome = new Array();
populateArray(pictureShowArrayHome,pictureShowHomeTotalPics);
function pictureShowHome(){
if(windowIdCountHome == pictureShowArrayHome.length-1) windowIdCountHome = 0;
else windowIdCountHome++;
document.getElementById('div_652').style.backgroundImage = "url('graphics/"+pictureShowArrayHome[windowIdCountHome]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowHome()",pictureShowHomeTime);
}
var windowIdCountJustCool = -1;
var pictureShowTimePointer;
var pictureShowJustCoolTotalPics = 25;
var pictureShowJustCoolTime = 4500;
var pictureShowArrayJustCool = new Array();
populateArray(pictureShowArrayJustCool,pictureShowJustCoolTotalPics);
function pictureShowJustCool(){
if(windowIdCountJustCool == pictureShowArrayJustCool.length-1) windowIdCountJustCool = 0;
else windowIdCountJustCool++;
document.getElementById('div_1233').style.backgroundImage = "url('graphics/"+pictureShowArrayJustCool[windowIdCountJustCool]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowJustCool()",pictureShowJustCoolTime);
}
var windowIdCountFeatures = -1;
var pictureShowTimePointer;
var pictureShowFeaturesTotalPics = 25;
var pictureShowFeaturesTime = 4500;
var pictureShowArrayFeatures = new Array();
populateArray(pictureShowArrayFeatures,pictureShowFeaturesTotalPics);
function pictureShowFeatures(){
if(windowIdCountFeatures == pictureShowArrayFeatures.length-1) windowIdCountFeatures = 0;
else windowIdCountFeatures++;
document.getElementById('div_1400').style.backgroundImage = "url('graphics/"+pictureShowArrayFeatures[windowIdCountFeatures]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowFeatures()",pictureShowFeaturesTime);
}
var windowIdCountOptions = -1;
var pictureShowTimePointer;
var pictureShowOptionsTotalPics = 25;
var pictureShowOptionsTime = 4500;
var pictureShowArrayOptions = new Array();
populateArray(pictureShowArrayOptions,pictureShowOptionsTotalPics);
function pictureShowOptions(){
if(windowIdCountOptions == pictureShowArrayOptions.length-1) windowIdCountOptions = 0;
else windowIdCountOptions++;
document.getElementById('div_1804').style.backgroundImage = "url('graphics/"+pictureShowArrayOptions[windowIdCountOptions]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowOptions()",pictureShowOptionsTime);
}
var windowIdCountAbout = -1;
var pictureShowTimePointer;
var pictureShowAboutTotalPics = 25;
var pictureShowAboutTime = 4500;
var pictureShowArrayAbout = new Array();
populateArray(pictureShowArrayAbout,pictureShowAboutTotalPics);
function pictureShowAbout(){
if(windowIdCountAbout == pictureShowArrayAbout.length-1) windowIdCountAbout = 0;
else windowIdCountAbout++;
document.getElementById('div_2409').style.backgroundImage = "url('graphics/"+pictureShowArrayAbout[windowIdCountAbout]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowAbout()",pictureShowAboutTime);
}
var windowIdCountPartners = -1;
var pictureShowTimePointer;
var pictureShowPartnersTotalPics = 25;
var pictureShowPartnersTime = 4500;
var pictureShowArrayPartners = new Array();
populateArray(pictureShowArrayPartners,pictureShowPartnersTotalPics);
function pictureShowPartners(){
if(windowIdCountPartners == pictureShowArrayPartners.length-1) windowIdCountPartners = 0;
else windowIdCountPartners++;
document.getElementById('div_2564').style.backgroundImage = "url('graphics/"+pictureShowArrayPartners[windowIdCountPartners]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowPartners()",pictureShowPartnersTime);
}
var windowIdCountCustomers = -1;
var pictureShowTimePointer;
var pictureShowCustomersTotalPics = 25;
var pictureShowCustomersTime = 4500;
var pictureShowArrayCustomers = new Array();
populateArray(pictureShowArrayCustomers,pictureShowCustomersTotalPics);
function pictureShowCustomers(){
if(windowIdCountCustomers == pictureShowArrayCustomers.length-1) windowIdCountCustomers = 0;
else windowIdCountCustomers++;
document.getElementById('div_2626').style.backgroundImage = "url('graphics/"+pictureShowArrayCustomers[windowIdCountCustomers]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowCustomers()",pictureShowCustomersTime);
}
var windowIdCountDownloads = -1;
var pictureShowTimePointer;
var pictureShowDownloadsTotalPics = 25;
var pictureShowDownloadsTime = 4500;
var pictureShowArrayDownloads = new Array();
populateArray(pictureShowArrayDownloads,pictureShowDownloadsTotalPics);
function pictureShowDownloads(){
if(windowIdCountDownloads == pictureShowArrayDownloads.length-1) windowIdCountDownloads = 0;
else windowIdCountDownloads++;
document.getElementById('div_2748').style.backgroundImage = "url('graphics/"+pictureShowArrayDownloads[windowIdCountDownloads]+".jpg')";
pictureShowTimePointer = setTimeout("pictureShowDownloads()",pictureShowDownloadsTime);
}
function setCssDomValue(id,css,value){
var obj = document.getElementById(id);
var styleObj = document.getElementById(id).style;
if(css== 'background') styleObj.background = value; 
else if(css== 'backgroundAttachment') styleObj.backgroundAttachment = value; 
else if(css== 'backgroundColor') styleObj.backgroundColor = value; 
else if(css== 'backgroundImage') styleObj.backgroundImage = 'URL('+value+')'; 
else if(css== 'backgroundPosition') styleObj.backgroundPosition = value; 
else if(css== 'backgroundRepeat') styleObj.backgroundRepeat = value; 
else if(css== 'backgroundSize') styleObj.backgroundSize = value; 
else if(css== 'border') styleObj.border = value; 
else if(css== 'borderBottom') styleObj.borderBottom = value; 
else if(css== 'borderBottomColor') styleObj.borderBottomColor = value; 
else if(css== 'borderBottomStyle') styleObj.borderbottomstyle = value; 
else if(css== 'borderBottomWidth') styleObj.borderBottomWidth = value; 
else if(css== 'borderColor') styleObj.borderColor = value; 
else if(css== 'borderCollapse') styleObj.borderCollapse = value; 
else if(css== 'borderLeft') styleObj.borderLeft = value; 
else if(css== 'borderLeftColor') styleObj.borderLeftColor = value; 
else if(css== 'borderLeftStyle') styleObj.borderLeftStyle = value; 
else if(css== 'borderLeftWidth') styleObj.borderLeftWidth = value; 
else if(css== 'borderRight') styleObj.borderRight = value; 
else if(css== 'borderRightColor') styleObj.borderRightColor = value; 
else if(css== 'borderRightStyle') styleObj.borderRightStyle = value; 
else if(css== 'borderRightWidth') styleObj.borderRightWidth = value; 
else if(css== 'borderStyle') styleObj.borderStyle = value; 
else if(css== 'borderSpacing') styleObj.borderspacing = value; 
else if(css== 'borderTop') styleObj.borderTop = value; 
else if(css== 'borderTopColor') styleObj.borderTopColor = value; 
else if(css== 'borderTopStyle') styleObj.borderTopStyle = value; 
else if(css== 'borderTopWidth') styleObj.borderTopWidth = value; 
else if(css== 'borderWidth') styleObj.borderWidth = value; 
else if(css== 'bottom') styleObj.bottom = value; 
else if(css== 'captionSide') styleObj.captionSide = value; 
else if(css== 'checked') obj.checked = value; 
else if(css== 'clear') styleObj.clear = value; 
else if(css== 'clip') styleObj.clip = value; 
else if(css== 'color') styleObj.color = value; 
else if(css== 'content') styleObj.content = value; 
else if(css== 'counterIncrement') styleObj.counterIncrement = value; 
else if(css== 'counterReset') styleObj.counterReset = value; 
else if(css== 'cursor') styleObj.cursor = value; 
else if(css== 'direction') styleObj.direction = value; 
else if(css== 'display') styleObj.display = value; 
else if(css== 'emptyCells') styleObj.emptyCells = value; 
else if(css== 'float') styleObj.float = value; 
else if(css== 'font') styleObj.font = value; 
else if(css== 'fontFamily') styleObj.fontFamily = value; 
else if(css== 'fontSize') styleObj.fontSize = value; 
else if(css== 'fontStyle') styleObj.fontStyle = value; 
else if(css== 'fontVariant') styleObj.fontVariant = value; 
else if(css== 'fontWeight') styleObj.fontWeight = value; 
else if(css== 'height') styleObj.height = value; 
else if(css== 'innerHTML') obj.innerHTML = value; 
else if(css== 'left') styleObj.left = value; 
else if(css== 'letterSpacing') styleObj.letterSpacing = value; 
else if(css== 'lineHeight') styleObj.lineHeight = value; 
else if(css== 'listStyle') styleObj.listStyle = value; 
else if(css== 'listStyleImage') styleObj.listStyleImage = value; 
else if(css== 'listStylePosition') styleObj.listStylePosition = value; 
else if(css== 'listStyleType') styleObj.listStyleType = value; 
else if(css== 'margin') styleObj.margin = value; 
else if(css== 'marginBottom') styleObj.marginBottom = value; 
else if(css== 'marginLeft') styleObj.marginLeft = value; 
else if(css== 'marginRight') styleObj.marginRight = value; 
else if(css== 'marginTop') styleObj.margintop = value; 
else if(css== 'maxHeight') styleObj.maxHeight = value; 
else if(css== 'maxWidth') styleObj.maxWidth = value; 
else if(css== 'minHeight') styleObj.minHeight = value; 
else if(css== 'minWidth') styleObj.minWidth = value; 
else if(css== 'opacity') {
//Firefox
styleObj.opacity = value;
//IE
styleObj.filters.alpha.opacity = value*100;
 }
else if(css== 'orphans') styleObj.orphans = value; 
else if(css== 'outline') styleObj.outline = value; 
else if(css== 'outlineColor') styleObj.outlineColor = value; 
else if(css== 'outlineStyle') styleObj.outlineStyle = value; 
else if(css== 'outlineWidth') styleObj.outlineWidth = value; 
else if(css== 'overflow') styleObj.overflow = value; 
else if(css== 'padding') styleObj.padding = value; 
else if(css== 'paddingBottom') styleObj.paddingBottom = value; 
else if(css== 'paddingLeft') styleObj.paddingLeft = value; 
else if(css== 'paddingRight') styleObj.paddingRight = value; 
else if(css== 'paddingTop') styleObj.paddingTop = value; 
else if(css== 'pageBreakAfter') styleObj.pageBreakAfter = value; 
else if(css== 'pageBreakBefore') styleObj.pageBreakBefore = value; 
else if(css== 'pageBreakInside') styleObj.pageBreakInside = value; 
else if(css== 'position') styleObj.position = value; 
else if(css== 'quotes') styleObj.quotes = value; 
else if(css== 'right') styleObj.right = value; 
else if(css== 'tableLayout') styleObj.tableLayout = value; 
else if(css== 'textAlign') styleObj.textAlign = value; 
else if(css== 'textDecoration') styleObj.textDecoration = value; 
else if(css== 'textIndent') styleObj.textIndent = value; 
else if(css== 'textShadow') styleObj.textShadow = value; 
else if(css== 'textTransform') styleObj.textTransform = value; 
else if(css== 'top') styleObj.top = value;
else if(css== 'verticalAlign') styleObj.verticalAlign = value; 
else if(css== 'visibility') styleObj.visibility = value; 
else if(css== 'whiteSpace') styleObj.whiteSpace = value; 
else if(css== 'widows') styleObj.widows = value; 
else if(css== 'width') styleObj.width = value; 
else if(css== 'wordSpacing') styleObj.wordSpacing = value; 
else if(css== 'zIndex') styleObj.zIndex = value; 
}
function getCssDomValue(id,css,additional,ending){
var value = 0;
;var obj = document.getElementById(id);
var styleObj = document.getElementById(id).style;
if(css== 'background') return  styleObj.background; 
else if(css== 'backgroundAttachment') return  styleObj.backgroundAttachment; 
else if(css== 'backgroundColor') return  styleObj.backgroundColor; 
else if(css== 'backgroundImage') return  styleObj.backgroundImage = 'URL('+value+') return '; 
else if(css== 'backgroundPosition') return  styleObj.backgroundPosition; 
else if(css== 'backgroundRepeat') return  styleObj.backgroundRepeat; 
else if(css== 'backgroundSize') return  additional+parseFloat(styleObj.backgroundSize)+ending; 
else if(css== 'border') return  styleObj.border; 
else if(css== 'borderBottom') return  additional+parseInt(styleObj.borderBottom)+ending; 
else if(css== 'borderBottomColor') return  styleObj.borderBottomColor; 
else if(css== 'borderBottomStyle') return  styleObj.borderbottomstyle; 
else if(css== 'borderBottomWidth') return  additional+parseInt(styleObj.borderBottomWidth)+ending; 
else if(css== 'borderColor') return  styleObj.borderColor; 
else if(css== 'borderCollapse') return  styleObj.borderCollapse; 
else if(css== 'borderLeft') return  additional+parseInt(styleObj.borderLeft)+ending; 
else if(css== 'borderLeftColor') return  styleObj.borderLeftColor; 
else if(css== 'borderLeftStyle') return  styleObj.borderLeftStyle; 
else if(css== 'borderLeftWidth') return  additional+parseInt(styleObj.borderLeftWidth)+ending; 
else if(css== 'borderRight') return  additional+parseInt(styleObj.borderRight)+ending; 
else if(css== 'borderRightColor') return  styleObj.borderRightColor; 
else if(css== 'borderRightStyle') return  styleObj.borderRightStyle; 
else if(css== 'borderRightWidth') return  additional+parseInt(styleObj.borderRightWidth)+ending; 
else if(css== 'borderStyle') return  styleObj.borderStyle; 
else if(css== 'borderSpacing') return  additional+parseInt(styleObj.borderspacing)+ending; 
else if(css== 'borderTop') return  styleObj.borderTop; 
else if(css== 'borderTopColor') return  styleObj.borderTopColor; 
else if(css== 'borderTopStyle') return  styleObj.borderTopStyle; 
else if(css== 'borderTopWidth') return  additional+parseInt(styleObj.borderTopWidth)+ending; 
else if(css== 'borderWidth') return  additional+parseInt(styleObj.borderWidth)+ending; 
else if(css== 'bottom') return  additional+parseInt(styleObj.bottom)+ending; 
else if(css== 'captionSide') return  styleObj.captionSide; 
else if(css== 'checked') return  obj.checked; 
else if(css== 'clear') return  styleObj.clear; 
else if(css== 'clip') return  styleObj.clip; 
else if(css== 'color') return  styleObj.color; 
else if(css== 'content') return  styleObj.content; 
else if(css== 'counterIncrement') return  styleObj.counterIncrement; 
else if(css== 'counterReset') return  styleObj.counterReset; 
else if(css== 'cursor') return  styleObj.cursor; 
else if(css== 'direction') return  styleObj.direction; 
else if(css== 'display') return  styleObj.display; 
else if(css== 'emptyCells') return  styleObj.emptyCells; 
else if(css== 'float') return  styleObj.float; 
else if(css== 'font') return  styleObj.font; 
else if(css== 'fontFamily') return  styleObj.fontFamily; 
else if(css== 'fontSize') return  additional+parseFloat(styleObj.fontSize)+ending; 
else if(css== 'fontStyle') return  styleObj.fontStyle; 
else if(css== 'fontVariant') return  styleObj.fontVariant; 
else if(css== 'fontWeight') return  styleObj.fontWeight; 
else if(css== 'height') return  additional+parseInt(styleObj.height)+ending; 
else if(css== 'innerHTML') obj.innerHTML = value; 
else if(css== 'left') return  additional+parseInt(styleObj.left)+ending; 
else if(css== 'letterSpacing') return  additional+parseInt(styleObj.letterSpacing)+ending; 
else if(css== 'lineHeight') return  additional+parseInt(styleObj.lineHeight)+ending; 
else if(css== 'listStyle') return  styleObj.listStyle; 
else if(css== 'listStyleImage') return  styleObj.listStyleImage; 
else if(css== 'listStylePosition') return  styleObj.listStylePosition; 
else if(css== 'listStyleType') return  styleObj.listStyleType; 
else if(css== 'margin') return  styleObj.margin; 
else if(css== 'marginBottom') return  additional+parseInt(styleObj.marginBottom)+ending; 
else if(css== 'marginLeft') return  additional+parseInt(styleObj.marginLeft)+ending; 
else if(css== 'marginRight') return  additional+parseInt(styleObj.marginRight)+ending; 
else if(css== 'marginTop') return  additional+parseInt(styleObj.margintop)+ending; 
else if(css== 'maxHeight') return  additional+parseInt(styleObj.maxHeight)+ending; 
else if(css== 'maxWidth') return  additional+parseInt(styleObj.maxWidth)+ending; 
else if(css== 'minHeight') return  additional+parseInt(styleObj.minHeight)+ending; 
else if(css== 'minWidth') return  additional+parseInt(styleObj.minWidth)+ending; 
else if(css== 'opacity') return  styleObj.opacity;
else if(css== 'filters') return  styleObj.filters.alpha.opacity*100;
else if(css== 'orphans') return  styleObj.orphans; 
else if(css== 'outline') return  styleObj.outline; 
else if(css== 'outlineColor') return  styleObj.outlineColor; 
else if(css== 'outlineStyle') return  styleObj.outlineStyle; 
else if(css== 'outlineWidth') return  additional+parseInt(styleObj.outlineWidth)+ending; 
else if(css== 'overflow') return  styleObj.overflow; 
else if(css== 'padding') return  additional+parseInt(styleObj.padding)+ending; 
else if(css== 'paddingBottom') return  additional+parseInt(styleObj.paddingBottom)+ending; 
else if(css== 'paddingLeft') return  additional+parseInt(styleObj.paddingLeft)+ending; 
else if(css== 'paddingRight') return  additional+parseInt(styleObj.paddingRight)+ending; 
else if(css== 'paddingTop') return  additional+parseInt(styleObj.paddingTop)+ending; 
else if(css== 'pageBreakAfter') return  styleObj.pageBreakAfter; 
else if(css== 'pageBreakBefore') return  styleObj.pageBreakBefore; 
else if(css== 'pageBreakInside') return  styleObj.pageBreakInside; 
else if(css== 'position') return  styleObj.position; 
else if(css== 'quotes') return  styleObj.quotes; 
else if(css== 'right') return  additional+parseInt(styleObj.right)+ending; 
else if(css== 'tableLayout') return  styleObj.tableLayout; 
else if(css== 'textAlign') return  styleObj.textAlign; 
else if(css== 'textDecoration') return  styleObj.textDecoration; 
else if(css== 'textIndent') return  styleObj.textIndent; 
else if(css== 'textShadow') return  styleObj.textShadow; 
else if(css== 'textTransform') return  styleObj.textTransform; 
else if(css== 'top') return  additional+parseInt(styleObj.top)+ending;
else if(css== 'verticalAlign') return  styleObj.verticalAlign; 
else if(css== 'visibility') return  styleObj.visibility; 
else if(css== 'whiteSpace') return  styleObj.whiteSpace; 
else if(css== 'widows') return  styleObj.widows; 
else if(css== 'width') return  additional+parseInt(styleObj.width)+ending; 
else if(css== 'wordSpacing') return  additional+parseInt(styleObj.wordSpacing)+ending; 
else if(css== 'zIndex') return  styleObj.zIndex; 
}
var suitefactory_1 = new Array();
suitefactory_1[suitefactory_1.length] = 'div_36';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_34';
suitefactory_1[suitefactory_1.length] = 'div_39';
suitefactory_1[suitefactory_1.length] = 'div_136';
suitefactory_1[suitefactory_1.length] = 'div_259';
suitefactory_1[suitefactory_1.length] = 'div_382';
suitefactory_1[suitefactory_1.length] = 'div_455';
suitefactory_1[suitefactory_1.length] = 'div_479';
suitefactory_1[suitefactory_1.length] = 'div_493';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_491';
suitefactory_1[suitefactory_1.length] = 'div_496';
suitefactory_1[suitefactory_1.length] = 'div_520';
suitefactory_1[suitefactory_1.length] = 'div_547';
suitefactory_1[suitefactory_1.length] = 'div_582';
suitefactory_1[suitefactory_1.length] = 'div_620';
suitefactory_1[suitefactory_1.length] = 'div_633';
suitefactory_1[suitefactory_1.length] = 'div_648';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_646';
suitefactory_1[suitefactory_1.length] = 'div_651';
suitefactory_1[suitefactory_1.length] = 'div_683';
suitefactory_1[suitefactory_1.length] = 'div_702';
suitefactory_1[suitefactory_1.length] = 'div_720';
suitefactory_1[suitefactory_1.length] = 'div_742';
suitefactory_1[suitefactory_1.length] = 'div_764';
suitefactory_1[suitefactory_1.length] = 'div_786';
suitefactory_1[suitefactory_1.length] = 'div_811';
suitefactory_1[suitefactory_1.length] = 'div_851';
suitefactory_1[suitefactory_1.length] = 'div_864';
suitefactory_1[suitefactory_1.length] = 'div_877';
suitefactory_1[suitefactory_1.length] = 'div_889';
suitefactory_1[suitefactory_1.length] = 'div_931';
suitefactory_1[suitefactory_1.length] = 'div_963';
suitefactory_1[suitefactory_1.length] = 'div_996';
suitefactory_1[suitefactory_1.length] = 'div_1030';
suitefactory_1[suitefactory_1.length] = 'div_1052';
suitefactory_1[suitefactory_1.length] = 'div_1105';
suitefactory_1[suitefactory_1.length] = 'div_1156';
suitefactory_1[suitefactory_1.length] = 'div_1182';
suitefactory_1[suitefactory_1.length] = 'div_1203';
suitefactory_1[suitefactory_1.length] = 'div_1229';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_1227';
suitefactory_1[suitefactory_1.length] = 'div_1232';
suitefactory_1[suitefactory_1.length] = 'div_1258';
suitefactory_1[suitefactory_1.length] = 'div_1274';
suitefactory_1[suitefactory_1.length] = 'div_1290';
suitefactory_1[suitefactory_1.length] = 'div_1304';
suitefactory_1[suitefactory_1.length] = 'div_1318';
suitefactory_1[suitefactory_1.length] = 'div_1332';
suitefactory_1[suitefactory_1.length] = 'div_1346';
suitefactory_1[suitefactory_1.length] = 'div_1363';
suitefactory_1[suitefactory_1.length] = 'div_1396';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_1394';
suitefactory_1[suitefactory_1.length] = 'div_1399';
suitefactory_1[suitefactory_1.length] = 'div_1416';
suitefactory_1[suitefactory_1.length] = 'div_1435';
suitefactory_1[suitefactory_1.length] = 'div_1448';
suitefactory_1[suitefactory_1.length] = 'div_1460';
suitefactory_1[suitefactory_1.length] = 'div_1480';
suitefactory_1[suitefactory_1.length] = 'div_1512';
suitefactory_1[suitefactory_1.length] = 'div_1524';
suitefactory_1[suitefactory_1.length] = 'div_1591';
suitefactory_1[suitefactory_1.length] = 'div_1656';
suitefactory_1[suitefactory_1.length] = 'div_1697';
suitefactory_1[suitefactory_1.length] = 'div_1782';
suitefactory_1[suitefactory_1.length] = 'div_1800';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_1798';
suitefactory_1[suitefactory_1.length] = 'div_1803';
suitefactory_1[suitefactory_1.length] = 'div_1818';
suitefactory_1[suitefactory_1.length] = 'div_1856';
suitefactory_1[suitefactory_1.length] = 'div_1886';
suitefactory_1[suitefactory_1.length] = 'div_1933';
suitefactory_1[suitefactory_1.length] = 'div_1948';
suitefactory_1[suitefactory_1.length] = 'div_1996';
suitefactory_1[suitefactory_1.length] = 'div_2056';
suitefactory_1[suitefactory_1.length] = 'div_2128';
suitefactory_1[suitefactory_1.length] = 'div_2190';
suitefactory_1[suitefactory_1.length] = 'div_2255';
suitefactory_1[suitefactory_1.length] = 'div_2310';
suitefactory_1[suitefactory_1.length] = 'div_2355';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_2404';
suitefactory_1[suitefactory_1.length] = 'div_2408';
suitefactory_1[suitefactory_1.length] = 'div_2446';
suitefactory_1[suitefactory_1.length] = 'div_2479';
suitefactory_1[suitefactory_1.length] = 'div_2507';
suitefactory_1[suitefactory_1.length] = 'div_2533';
suitefactory_1[suitefactory_1.length] = 'div_2560';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_2558';
suitefactory_1[suitefactory_1.length] = 'div_2563';
suitefactory_1[suitefactory_1.length] = 'div_2574';
suitefactory_1[suitefactory_1.length] = 'div_2584';
suitefactory_1[suitefactory_1.length] = 'div_2594';
suitefactory_1[suitefactory_1.length] = 'div_2614';
suitefactory_1[suitefactory_1.length] = 'div_2622';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_2620';
suitefactory_1[suitefactory_1.length] = 'div_2625';
suitefactory_1[suitefactory_1.length] = 'div_2636';
suitefactory_1[suitefactory_1.length] = 'div_2646';
suitefactory_1[suitefactory_1.length] = 'div_2658';
suitefactory_1[suitefactory_1.length] = 'div_2666';
suitefactory_1[suitefactory_1.length] = 'div_2676';
suitefactory_1[suitefactory_1.length] = 'div_2686';
suitefactory_1[suitefactory_1.length] = 'div_2694';
suitefactory_1[suitefactory_1.length] = 'div_2706';
suitefactory_1[suitefactory_1.length] = 'div_2716';
suitefactory_1[suitefactory_1.length] = 'div_2724';
suitefactory_1[suitefactory_1.length] = 'div_2734';
suitefactory_1[suitefactory_1.length] = 'div_2744';
suitefactory_1[suitefactory_1.length] = 'subMenuContainer_2742';
suitefactory_1[suitefactory_1.length] = 'div_2747';
suitefactory_1[suitefactory_1.length] = 'div_2784';
suitefactory_1[suitefactory_1.length] = 'div_2800';
suitefactory_1[suitefactory_1.length] = 'div_2812';
suitefactory_1[suitefactory_1.length] = 'div_2849';
suitefactory_1[suitefactory_1.length] = 'div_2881';
suitefactory_1[suitefactory_1.length] = 'div_2929';
suitefactory_1[suitefactory_1.length] = 'div_2939';
suitefactory_1[suitefactory_1.length] = 'form_2940';
var solutionsMenus_2 = new Array();
solutionsMenus_2[solutionsMenus_2.length] = 'div_39';
solutionsMenus_2[solutionsMenus_2.length] = 'div_136';
solutionsMenus_2[solutionsMenus_2.length] = 'div_259';
solutionsMenus_2[solutionsMenus_2.length] = 'div_382';
solutionsMenus_2[solutionsMenus_2.length] = 'div_455';
solutionsMenus_2[solutionsMenus_2.length] = 'div_479';
var howtoSuiteFactoryMenus_3 = new Array();
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_496';
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_520';
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_547';
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_582';
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_620';
howtoSuiteFactoryMenus_3[howtoSuiteFactoryMenus_3.length] = 'div_633';
var visualsSuiteFactoryMenus_4 = new Array();
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_651';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_683';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_702';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_720';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_742';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_764';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_786';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_811';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_851';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_864';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_877';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_889';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_931';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_963';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_996';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1030';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1052';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1105';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1156';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1182';
visualsSuiteFactoryMenus_4[visualsSuiteFactoryMenus_4.length] = 'div_1203';
var coolstuffMenus_5 = new Array();
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1232';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1258';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1274';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1290';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1304';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1318';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1332';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1346';
coolstuffMenus_5[coolstuffMenus_5.length] = 'div_1363';
var standardMenus_6 = new Array();
standardMenus_6[standardMenus_6.length] = 'div_1399';
standardMenus_6[standardMenus_6.length] = 'div_1416';
standardMenus_6[standardMenus_6.length] = 'div_1435';
standardMenus_6[standardMenus_6.length] = 'div_1448';
standardMenus_6[standardMenus_6.length] = 'div_1460';
standardMenus_6[standardMenus_6.length] = 'div_1480';
standardMenus_6[standardMenus_6.length] = 'div_1512';
standardMenus_6[standardMenus_6.length] = 'div_1524';
standardMenus_6[standardMenus_6.length] = 'div_1591';
standardMenus_6[standardMenus_6.length] = 'div_1656';
standardMenus_6[standardMenus_6.length] = 'div_1697';
standardMenus_6[standardMenus_6.length] = 'div_1782';
var optionalMenus_7 = new Array();
optionalMenus_7[optionalMenus_7.length] = 'div_1803';
optionalMenus_7[optionalMenus_7.length] = 'div_1818';
optionalMenus_7[optionalMenus_7.length] = 'div_1856';
optionalMenus_7[optionalMenus_7.length] = 'div_1886';
optionalMenus_7[optionalMenus_7.length] = 'div_1933';
optionalMenus_7[optionalMenus_7.length] = 'div_1948';
optionalMenus_7[optionalMenus_7.length] = 'div_1996';
optionalMenus_7[optionalMenus_7.length] = 'div_2056';
optionalMenus_7[optionalMenus_7.length] = 'div_2128';
optionalMenus_7[optionalMenus_7.length] = 'div_2190';
optionalMenus_7[optionalMenus_7.length] = 'div_2255';
optionalMenus_7[optionalMenus_7.length] = 'div_2310';
optionalMenus_7[optionalMenus_7.length] = 'div_2355';
var aboutMenus_8 = new Array();
aboutMenus_8[aboutMenus_8.length] = 'div_2408';
aboutMenus_8[aboutMenus_8.length] = 'div_2446';
aboutMenus_8[aboutMenus_8.length] = 'div_2479';
aboutMenus_8[aboutMenus_8.length] = 'div_2507';
aboutMenus_8[aboutMenus_8.length] = 'div_2533';
var partnersMenus_9 = new Array();
partnersMenus_9[partnersMenus_9.length] = 'div_2563';
partnersMenus_9[partnersMenus_9.length] = 'div_2574';
partnersMenus_9[partnersMenus_9.length] = 'div_2584';
partnersMenus_9[partnersMenus_9.length] = 'div_2594';
partnersMenus_9[partnersMenus_9.length] = 'div_2614';
var customersMenus_10 = new Array();
customersMenus_10[customersMenus_10.length] = 'div_2625';
customersMenus_10[customersMenus_10.length] = 'div_2636';
customersMenus_10[customersMenus_10.length] = 'div_2646';
customersMenus_10[customersMenus_10.length] = 'div_2658';
customersMenus_10[customersMenus_10.length] = 'div_2666';
customersMenus_10[customersMenus_10.length] = 'div_2676';
customersMenus_10[customersMenus_10.length] = 'div_2686';
customersMenus_10[customersMenus_10.length] = 'div_2694';
customersMenus_10[customersMenus_10.length] = 'div_2706';
customersMenus_10[customersMenus_10.length] = 'div_2716';
customersMenus_10[customersMenus_10.length] = 'div_2724';
customersMenus_10[customersMenus_10.length] = 'div_2734';
var downloadsMenus_11 = new Array();
downloadsMenus_11[downloadsMenus_11.length] = 'div_2747';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2784';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2800';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2812';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2849';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2881';
downloadsMenus_11[downloadsMenus_11.length] = 'div_2929';
function initialize(event){
setMenuProperties('menutext_35','times new roman',15,'normal','bold','white','transparent');
setLastUsedTopMenuClickedId('menutext_35');
setLastUsedMenuClickedId('menuItem_37');
setMenuProperties('menuItem_37','arial',13,'normal','normal','blue','lightgrey');
setDisplayOfIdArray(solutionsMenus_2,'none',event);
pictureShowDetails();
cssDom('div_29','top','990px');
onResizeWindow('div_13',1024);;
}
/**************************************************************************************************************************/
/************************************************** End of Script Sheets **************************************************/
/**************************************************************************************************************************/
-->

