. */ var dom = (document.getElementById) ? true : false; var ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ns4 = (document.layers && !dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false; // resize fix for ns4 var origWidth, origHeight; if (ns4) { origWidth = window.innerWidth; origHeight = window.innerHeight; window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); } } // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 160; var offX= 0; // how far from mouse to show tip var offY= 0; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#DDECFF"; var tipBorderColor= "#000080"; var tipBorderWidth= 3; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // optional: bgColor and color to be sent to tooltip messages[0] = new Array('../images/inter/INTER5504400s.jpg','Axxess Standard LCD Phone Part Number INTER5504400',"#FFFFFF"); messages[1] = new Array('../images/inter/INTER5504200S.jpg','Axxess 60 button DSS Part Number INTER5504200.',"#FFFFFF"); messages[2] = new Array('../images/inter/INTER8061045.gif','Axxess AC Power Supply Part Number INTER8061045 Included in Kit Part Number INTER5503014. NOT included with or needed for INTER5503018. ',"#FFFFFF"); messages[3] = new Array('../images/inter/INTER5504221.gif','Card included with Axxess 60 button DSS Part Number INTER5504200.',"#FFFFFF"); messages[4] = new Array('../images/inter/INTER8131632.gif','PCDPM Cable included in PCDPM Kit Part Number INTER5503018.',"#FFFFFF"); messages[5] = new Array('../images/inter/INTER8131567.gif','Cable included in PCDPM Kit Part Number INTER5503014.',"#FFFFFF"); messages[6] = new Array('../images/inter/INTER8131519.gif','Cable Part Number INTER8131519 included in PCDPM Kit Part Number INTER5503018.',"#FFFFFF"); messages[7] = new Array('../images/inter/INTER5503008.gif','Card included in PCDPM Kit Part Number INTER5503018.',"#FFFFFF"); //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i'; var endStr = ''; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles for all but ns4. // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ns4)? document.tipDiv.document: (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = (ns4)? document.tipDiv: tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { if (ns4) document.captureEvents(Event.MOUSEMOVE); document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ns4) { var tip = '
'+ startStr + messages[num][0] + midStr + '' + messages[num][1] + '' + endStr + '
'; tooltip.write(tip); tooltip.close(); } else if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '' + messages[num][1] + '' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft; mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft; mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop; } // tooltip width and height var tpWd = (ns4)? tooltip.width: (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ns4)? tooltip.height: (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns4||ns5)? window.innerWidth-20+window.pageXOffset: document.body.clientWidth+document.body.scrollLeft; var winHt = (ns4||ns5)? window.innerHeight-20+window.pageYOffset: document.body.clientHeight+document.body.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = (ns4)? mouseX-(tpWd+offX): mouseX-(tpWd+offX)+"px"; else tipcss.left = (ns4)? mouseX+offX: mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = (ns4)? winHt-(tpHt+offY): winHt-(tpHt+offY)+"px"; else tipcss.top = (ns4)? mouseY+offY: mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } //-->

Main Resource HomeClick here to learn more.




 

Aastra VoIP Phones Iwatsu Adix NEC Phones Nortel Phones

Looking for a Business Telephone System?

More Information:

 

Inter-Tel Axxess Phone and DSS Setup#

Have this information E-mailed to you*

Name:

Email:

Hover over the components and connectors of this Inter-Tel Axxess Phone and DSS setup to see the part numbers. If you need to purchase any of these parts, click on it.

Axxess Phone and DSS Setup - Printable

The Axxess PCDPM Kit (Part number INTER5503018) contains:
INTER5503008 - PCDPM Card
INTER8131631 - Cable-PCDPM to RS-232
INTER8131632 - Cable-PCDPM to New Style Red/Green Keyset.
INTER8131519 - Cable-PCDPM to DSS
Power supply is pictured, but not needed or included in this kit.

Alternate Axxess PCDPM Kit (Part number INTER5503014) contains:
INTER5503004 - PCDPM Card
INTER8131567 - Cable-PCDPM Card to Old Style Keyset Phone
INTER8131565 - Cable-PCDPM to RS-232
INTER8131595 - Cable-PCDPM to DSS
INTER8131634 - Cable-PCDPM to New Style Keyset Phone
INTER8061045 - Transformer

 

Inter-tel

 

Inter-tel Axxess Stnd LCD INTER5504400 Inter-tel Axxess DSS INTER5504200 Inter-tel AC Power Supply INTER8061045 Inter-tel PCDPM INTER5504200 Inter-tel cable INTER5503018 Inter-tel Cable INTER8131567 Inter-tel PCDPM Cable INTER5503018 INTER PCDPM INTER5503018

 

Other Setups Available:

Inter-Tel Axxent KSU and Modem Setup

Inter-Tel Axxess CPU and Modem Setup

Executone IDS 12 Port SLI Card Setup

Inter-Tel Axxess Phone and DSS Setup

Setup AxxessoryTalk NT Voice Mail to use a Maped Drive to Save Database Programming

Network Two Axxess Systems

ESNA Telephony Office Linx Voice mail System Mailbox Setup

# Instructions provided herein will not work on all configurations. Some features may require additional hardware or specific software versions.

Please Note: If you need more information than is supplied here, we will be happy to assist you by telephone at800-564-8045 (speak with sales) for a nominal fee of $25 for 15 minutes. If we are unable to assist you, there will be no charge.

*You will also receive our periodic special offers, sent not more than every month or so. You may unsubscribe at any time.


Main Resource is a member of the BBB On-line

This link takes you to a simple form you can use to tell a friend about our great prices on used telephone equipment.


Search Site by Keyword:

Last Updated: November 11, 2008

All Contents Copyright © 1999-2008 Main Resource, Inc.

OTHER USEFUL SITES
Site Map SITE MAP Site Map WARRANTY INFORMATION


Product Links:

Refurbished Comdial - Comdial phones, Comdial KSU, Comdial Cards
Refurbished Executone - Executone phones, Executone KSU, Executone Cards
Refurbished Inter-Tel - Inter-Tel phones, Inter-Tel KSU, Inter-Tel Cards, Inter-Tel Headsets
Refurbished Isoetec - Isoetec phones, Isoetec KSU, Isoetec Cards
Refurbished Premier - Premier phones, Premier KSU, Premier Cards
Refurbished Toshiba - Toshiba phones, Toshiba KSU, Toshiba Cards
Refurbished Vodavi - Vodavi phones, Vodavi KSU, Vodavi Cards
New Headsets - GN Netcom, Inter-Tel, Plantronics

The registered trademarks of Executone, Isoetec, Inter-Tel, Vodavi, premier, Toshiba, Norstar and Comdial are used for the purpose of identification only. Main Resource, Inc is not affiliated with/or endorsed by these manufacturers. All refurbished items are fully covered by Main Resource's 1 year warranty. Authorized sales of OEM products will be covered by the OEMs expressed warranty.

 

Email Newsletter icon, E-mail Newsletter icon, Email List icon, E-mail List icon Sign up for our Email Newsletter

Startechtel.com, Inc.
111 E. Arrow Highway
Pomona, California 91767
800-564-8045

Email Sales
Email Webmaster



Valid XHTML 1.0 Transitional