[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

Using Print CSS not to display the javascript navigation menu

Asked by marcivry in Cascading Style Sheets (CSS), JavaScript

Tags: javascript, print, css, display, using

I have a site which I want to create a CSS for printing. I built the CSS but for some reason, the menu system will not disappear. When I use the print preview the navigation menu is still there. I ahve included the Print.css code and also a sample of the javascript that the menu is apart of, and then finally, some code from the html page. thanks.

/* =GENERAL STYLE
------------------------------------*/
body{
      margin:0px;
      background:#ffffff;
      font-family: Times, sans-serif;
      color:#000000;
      font-size: 12pt;
      height: 700px;
}
img{
      display:none;      
      border:1px solid #3d3d3d;
}
img a{
      display:none;
      border:1px solid #3d3d3d;
}
a{
      font-weight:bold;
      text-decoration:underline;
      color:#0000ff;
}

p{
      padding:0px 10px 0px 10px;
}
li{
      list-style-image:url(../images/bullet.gif);
      padding: 2px 5px 2px 5px;
}

.content {
padding: 0px 10px 0px 10px;
vertical-align:top;
}

td.navbuttons a {
display: none;

}

td.navbuttons a:hover, td.navbuttons a:active {
display:none;

}

.fader a:hover
{
display:none;  
    }
      
blockquote
{
font:Arial, Helvetica, sans-serif;
font-size:12px;
color:black;
font-weight:bold;
}

/*      =STRUCTURE
------------------------------------*/
#container{
/*      width:955px;
      max-width:955px;*/
      display:none;
}

#holder{
display:none;
}

#header{
display:none;
}

#search{
display:none;
}
#l_col{
display:none;
}

#left_col{
display:none;
}

#menu{
display:none;
}

#subMenu{
display:none;
}

#c_col{
      width:775px;
      max-width:775px;                  
      float:left;
      left:180px;
      top:98px;
      background-color:#ffffff;
}

#footer{
display:none;
}
#slideshow{
display:none;
}

#fscroller{
display:none;
}
/* =NAVIGATION
------------------------------------*/
#1button0{
display:none;
}                  

#1button1{
display:none;
}

.grayRegion{
display:none;
}

.rcMenuStatic1{
display:none;
}

.rcMenuHover1{
display:none;
}

.rcSubMenuStatic1{
display:none;
}

.rcSubMenuHover1{
display:none;
}

/*      =FOOTER
------------------------------------*/
div .footerLinks {
display:none;
}


/*      =GLOBAL MENU
------------------------------------*/
.global{
display:none;
}
.global ul{
display:none;
}
.global li{
display:none;
}
.global a{
display:none;
}
.global a:hover{
display:none;
}

/*      =CENTER COLUMN
------------------------------------*/
.title{
      font-size: 14pt;
      font-family: Times, serif;
      font-weight:bold;
      color:#000000;
      text-transform:uppercase;
      margin:0px;
      padding:3px 0 3px 10px;
      background-color:#FFF;
}
.title a{
      text-decoration:underline;
      color:#0000ff;
}
.subTitle{
      font-size: 13pt;
      font-family: Times, serif;
      font-weight:bold;
      color:#000000;
      margin:0px;
      padding:4px 0px 4px 10px;
      background-color:#FFF;
}
.subTitle a{
      text-decoration:underline;
      color:#0000ff;
}
.halfSection{
      float:left;
      background-color:#ccc;
      width:276px;
      padding:10px;
}

table {
width:auto;
background:#FFFFFF;
color:#000000;
font-family:Times, serif;
font-size:12pt;
}

/*      =RIGHT COLUMN
------------------------------------*/
#r_col h1{
display:none;
}
#r_col p{
display:none;
}

JAVASCRIPT Page
// JavaScript Document

<!---

//  MENU ITEMS //
 
var Menu1 = new Array ()
var subMenu1 = new Array ()

   Menu1[0] = new Array("Home", "/index.htm","", "")
     subMenu1[0] = new Array()
     subMenu1[0][0] = new Array ("Picatinny Homepage", "http://w4.pica.army.mil/","_top")
     subMenu1[0][1] = new Array ("JM&L LCMC Home", "http://www.pica.army.mil/JML/Default.asp","_top", "")


   Menu1[1] = new Array("Business Opportunities", "/index.htm","", "")
     subMenu1[1] = new Array()
     subMenu1[1][0] = new Array ("Future Buy Forecast", "/FutureBuy/FutureBuy.pdf","_top", "")
     subMenu1[1][1] = new Array ("Solicitations", "/dbi/DynCBD/ProcNetSolicitation.cfm","_top", "")
     subMenu1[1][2] = new Array ("Submit Bids/Proposals", "/intro/Submitrf.htm","_top", "")
     subMenu1[1][3] = new Array ("Sources Sought", "/dbi/DynCBD/ProcNetSourcesSought.cfm","_top")              
     subMenu1[1][4] = new Array ("Special Notices", "/dbi/DynCBD/ProcNetSpecial.cfm","_top")
     subMenu1[1][5] = new Array ("Search Local Actions", "/dbi/Search.htm","_top")
     subMenu1[1][6] = new Array ("Search FedBizOpps", "http://vsearch2.fbo.gov/servlet/SearchServlet","_top")
     subMenu1[1][7] = new Array ("Bidders Mailing List", "/bml.htm","_top")
     subMenu1[1][8] = new Array ("TACOM-Anniston", "http://www.anadprocnet.army.mil","_top")
     subMenu1[1][9] = new Array ("TACOM-Red River", "https://www.redriver.army.mil/contract.htm","_top")
     subMenu1[1][10] = new Array ("TACOM-Rock Island", "https://aais.ria.army.mil/","_top")
     subMenu1[1][11] = new Array ("TACOM-Warren", "http://contracting.tacom.army.mil/","_top")              
     subMenu1[1][12] = new Array ("ASFI Solicitation Index", "https://acquisition.army.mil/asfi","_top")
     subMenu1[1][13] = new Array ("FedBizOpps", "http://www.fbo.gov","_top")
     subMenu1[1][14] = new Array ("FBO Numbered Notes", "http://www.fbo.gov/Numbered_Notes.html","_top")
     subMenu1[1][15] = new Array ("Solicitation Archive", "/dbi/DynCBD/getsolArchive.cfm","_top")
     subMenu1[1][16] = new Array ("Sources Sought Archive", "/dbi/DynCBD/getSourcesSoughtArchive.cfm","_top")
     subMenu1[1][17] = new Array ("Special Notice Archive", "/dbi/DynCBD/getSpecialNoticeArchive.cfm","_top")


   Menu1[2] = new Array("Contracts", "/index.htm","", "")
     subMenu1[2] = new Array()
     subMenu1[2][0] = new Array ("Contract Award", "/dbi/DynCBD/ProcNetAward.cfm","_top")
       subMenu1[2][1] = new Array ("Contract/Award Archive", "/dbi/DynCBD/GetAwardArchive.cfm","_top")

   Menu1[3] = new Array("Vendor Information", "/index.htm","", "")
     subMenu1[3] = new Array()
     subMenu1[3][0] = new Array ("CCR", "http://www.ccr.gov","_top")

   Menu1[4] = new Array("Local Links", "/index.htm", "", "")
     subMenu1[4] = new Array()
     subMenu1[4][0] = new Array ("Strategic Business Plan", "/intro/BusinessPlan/BusinessPlan.ppt","_top")
     subMenu1[4][1] = new Array ("ProcNet Introduction", "/intro/intro.htm","_top")
     subMenu1[4][2] = new Array ("ProcNet Factsheet", "/intro/factsheet.htm","_top")
     subMenu1[4][3] = new Array ("Local Clauses", "/reference/Clauses/locals.htm","_top")
     subMenu1[4][4] = new Array ("Small Business Program", "http://www.pica.army.mil/smallbusinessprogram/","_top")

   Menu1[5] = new Array("External Links", "/index.htm", "", "")
     subMenu1[5] = new Array()
     subMenu1[5][0] = new Array ("Regulations", "/Reference/Regulations.htm","_top")
     subMenu1[5][1] = new Array ("Government Portals", "/Reference/GovPortals.htm","_top")              
     subMenu1[5][2] = new Array ("Laws", "/Reference/Laws.htm","_top")       
     subMenu1[5][3] = new Array ("Electronic Library", "/Reference/ELib.htm","_top")
     subMenu1[5][4] = new Array ("Services", "/Reference/Services.htm","_top")
     subMenu1[5][5] = new Array ("Publications", "/Reference/articles/index.htm","_top")
      
   Menu1[6] = new Array("Helpdesk", "/index.htm","", "")
     subMenu1[6] = new Array()
     subMenu1[6][0] = new Array ("Procurement Request Generation Tools", "/Procreq.htm","_top")
     subMenu1[6][1] = new Array ("Credit Card Support", "/CreditCard/index.htm","_top")
     subMenu1[6][2] = new Array ("Contact Webmaster", "mailto:procnet@pica.army.mil","_top")


   Menu1[7] = new Array("Miscellaneous", "/index.htm","", "")
     subMenu1[7] = new Array()
     subMenu1[7][0] = new Array ("Government Forms", "/reference/government_forms.htm","_top")       
     subMenu1[7][1] = new Array ("Customer Survey", "/Survey/customer_survey.htm","_top")       
     subMenu1[7][2] = new Array ("FAQs", "/intro/FAQ.htm","_top")
     subMenu1[7][3] = new Array ("NCMA", "/NCMA/index.htm","_top")
     subMenu1[7][4] = new Array ("Employment Opportunities", "https://cpolwapp.belvoir.army.mil/public/vabSelfNom/index.jsp","_top")              
      
/// FORMAT MENU  ///
var menuStyle = "3d"                                  // Menu Style (flat, 3d)
var cellPadding = "3"                                   // Cell Padding
var cellBorder = 1                                      // Border width (for no border, enter 0)  THIS VALUE APPLIES TO ALL MENUS
var verticalOffset = "0"                                // Vertical offset of Sub Menu.
var horizontalOffset = "0"                              // Horizontal offset of Sub Menu.
var subMenuDelay = 1                                    // Time sub menu stays visible for (in seconds). THIS VALUE APPLIES TO ALL MENUS
var subIndicate = 0                                     // Show if a sub menu is present (use 0 for "no")  THIS VALUE APPLIES TO ALL MENUS
var indicator = "<img src='images/list1.gif'>" // Symbol to show if a sub menu is present (subIndicate must be to set to 1)
                                                    // Use standard HTML <img> tag. You can use a character instead of an image.
                                                    // e.g.      indicator = ">"
// Main Menu Items
var menuWidth = "180"                  // Width of menu item.  Use 0 for default
var borderColor = "#8b8d7e"            // Border Colour (flat mode only)
var borderHighlight = "#c6c9b4"        // Border Highlight Colour (3d mode only)
var borderShadow = "#fdfff2"           // Border Shadow Colour (3d mode only)
var menuBackground = "#8b8d7e"         // Cell Background Colour  "#ffffff"
var menuHoverBackground = "#E2E6CF"    // Cell Background Colour on mouse rollover  "#8b8d7e"
var fontFace = "Verdana, Arial"               // Font Face
var fontColour = "#000000"             // Font Colour ffffff
var fontHoverColour = "#000000"        // Font Colour on mouse rollover 8b8d7e
var fontSize = "13px"                  // Font Size
var fontDecoration = "none"            // Style of the link text (none, underline, overline, line-through)
var fontWeight = "bold"                // Font Weight (normal, bold)

// Sub Menu Items
var smenuWidth = "180"                 // Width of sub menu item.  Use 0 for default
var sborderColor = "#8b8d7e"           // Border Colour (flat mode only)
var sborderHighlight = "#c6c9b4"       // Border Highlight Colour (3d mode only)
var sborderShadow = "#fdfff2"          // Border Shadow Colour (3d mode only)
var smenuBackground = "#8b8d7e"        // Cell Background Colour
var smenuHoverBackground = "#E2E6CF"   // Cell Background Colour on mouse rolloverr
var sfontFace = "Verdana, Arial"              // Font Face
var sfontColour = "#000000"            // Font Colour
var sfontHoverColour = "#000000"       // Font Colour on mouse rollover  8b7e8d
var sfontSize = "13px"                 // Font Size
var sfontDecoration = "none"           // Style of the link text (none, underline, overline, line-through)
var sfontWeight = "bold"               // Font Weight (normal, bold)

var quantity = 1
/// END FORMAT MENU  ////

/// DO NOT EDIT BELOW THIS LINE  ///
// Browser Sniffer
var isIE = (document.getElementById && document.all)?true:false;
var isNS4 = (document.layers)?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;
/*var isFF2 = (document.getElementById && !document.all)?true:false;*/
var timer;
var obj = (isIE)?"document.all":"document.getElementById"
// Menu Styles

function getElement(id)
{ if (document.getElementById) return document.getElementById(id)
else return eval('document.all.' + id)
}

function createStyles(quant){
styleBorder=(menuStyle.split(",")[quant-1].toLowerCase() == "flat")?cellBorder:0
  document.writeln ('<style>');
  document.writeln ('.rcMenuStatic'+quant+' {font-family:'+fontFace.split(",")[quant-1]+';font-size:'+fontSize.split(",")[quant-1]+';color:'+fontColour.split(",")[quant-1]+';font-weight:'+fontWeight.split(",")[quant-1]+';background-color:'+menuBackground.split(",")[quant-1]+'; cursor:hand; text-decoration:'+fontDecoration.split(",")[quant-1]+'}');
  document.writeln ('.rcMenuHover'+quant+'  {font-family:'+fontFace.split(",")[quant-1]+';font-size:'+fontSize.split(",")[quant-1]+';color:'+fontHoverColour.split(",")[quant-1]+';font-weight:'+fontWeight.split(",")[quant-1]+';background-color:'+menuHoverBackground.split(",")[quant-1]+'; cursor:hand; text-decoration:'+fontDecoration.split(",")[quant-1]+'}');
  document.writeln ('.rcSubMenuStatic'+quant+' {font-family:'+sfontFace.split(",")[quant-1]+';font-size:'+sfontSize.split(",")[quant-1]+';color:'+sfontColour.split(",")[quant-1]+';font-weight:'+sfontWeight.split(",")[quant-1]+';text-decoration:'+sfontDecoration.split(",")[quant-1]+';background-color:'+smenuBackground.split(",")[quant-1]+'; cursor:hand}');
  document.writeln ('.rcSubMenuHover'+quant+'  {font-family:'+sfontFace.split(",")[quant-1]+';font-size:'+sfontSize.split(",")[quant-1]+';color:'+sfontHoverColour.split(",")[quant-1]+';font-weight:'+sfontWeight.split(",")[quant-1]+';text-decoration:'+sfontDecoration.split(",")[quant-1]+';background-color:'+smenuHoverBackground.split(",")[quant-1]+'; cursor:hand}');
  document.writeln ('</style>');
}
// Build and show the main menu items
function showMenus(quant,definedOrientation)
{
  createStyles(quant);
  if(definedOrientation!=""){orientation=definedOrientation}
  if (orientation.toLowerCase() == "vertical"){document.writeln ('<table border="0" cellpadding="0" cellspacing="'+styleBorder+'" bgColor="'+borderColor.split(",")[quant-1]+'">')}
  else{document.writeln ('<table border="0" cellpadding="0" cellspacing="'+styleBorder+'" bgColor="'+borderColor.split(",")[quant-1]+'"><tr>')}  
  for (x=0; x<eval("Menu"+quant).length; x++)
  {
    if (orientation.toLowerCase()=="vertical") document.writeln('<tr>')
    document.writeln ('<td width="'+menuWidth+'" onclick="tdMouseClick(\''+quant+'mainLink'+x+'\')" onMouseOver="hoverMenu(); popDown(\''+quant+'\','+x+', \''+quant+'button'+x+'\',\''+orientation+'\'); " onMouseOut="clearMenu('+quant+','+x+')" ')
    if (menuStyle.split(",")[quant-1].toLowerCase() == "3d"){document.writeln ('style="border-left:'+cellBorder+'px solid '+borderHighlight.split(",")[quant-1]+';border-top:'+cellBorder+'px solid '+borderHighlight.split(",")[quant-1]+';border-right:'+cellBorder+'px solid '+borderShadow.split(",")[quant-1]+';border-bottom:'+cellBorder+'px solid '+borderShadow.split(",")[quant-1]+';"');}        
    document.writeln ('><div id="'+quant+'button'+x+'"><table border="0" cellpadding="'+cellPadding.split(",")[quant-1]+'" cellspacing="0" width="100%"><tr><td class="rcMenuStatic'+quant+'" id="'+quant+'cell'+x+'" nowrap>');
    document.writeln ('<a id="'+quant+'mainLink'+x+'" href="'+eval("Menu"+quant)[x][1]+'" target="'+eval("Menu"+quant)[x][2]+'" class="rcMenuStatic'+quant+'">'+eval("Menu"+quant)[x][0]+'</a></td>');
    if (subIndicate == 1&&eval("subMenu"+quant)[x].length>=1){
      document.writeln('<td class="rcMenuStatic'+quant+'" id="'+quant+'cell'+x+'a" align="right">');
      document.writeln ('<a id="'+quant+'mainLink'+x+'a" href="'+eval("Menu"+quant)[x][1]+'" target="'+eval("Menu"+quant)[x][2]+'" class="rcMenuStatic'+quant+'">'+indicator+'</a></td>');}
    document.writeln ('</tr></table></div></td>');    
    if (orientation.toLowerCase()=="vertical") document.writeln('</tr>')
  }
  if (orientation.toLowerCase() == "vertical"){document.writeln ('</table>');}
  else{document.writeln ('</tr></table>');}  
// Build the sub menu items
  for (x=0; x<eval("Menu"+quant).length; x++)
  {
    if (eval("subMenu"+quant)[x].length > 0)
    {    
      document.writeln ('<div id="'+quant+'MENU'+x+'" style="visibility:hidden; position:absolute; z-index:2" >');
      document.writeln ('<table width="'+smenuWidth.split(",")[quant-1]+'" border="0" cellpadding="'+cellPadding.split(",")[quant-1]+'" cellspacing="'+styleBorder+'" bgColor="'+sborderColor.split(",")[quant-1]+'">');
      for (y=0; y<eval("subMenu"+quant)[x].length; y++)
      {
        document.writeln ('<tr>');
        if (eval("subMenu"+quant)[x][y][1].indexOf("#") != -1)
        {
          document.writeln ('<td bgColor="'+eval("subMenu"+quant)[x][y][2]+'" id="'+quant+'subMenu'+x+y+'" onMouseOver="hoverMenu(); highlightMenu(\'sub\','+x+','+y+',\'\','+quant+')" nowrap')
          if (menuStyle.split(",")[quant-1].toLowerCase() == "3d"){document.writeln ('style="border-left:'+cellBorder+'px solid '+sborderHighlight.split(",")[quant-1]+';border-top:'+cellBorder+'px solid '+sborderHighlight.split(",")[quant-1]+';border-right:'+cellBorder+'px solid '+sborderShadow.split(",")[quant-1]+';border-bottom:'+cellBorder+'px solid '+sborderShadow.split(",")[quant-1]+';"');}
          document.writeln ('><p style="font-family:'+sfontFace.split(",")[quant-1]+'; font-size:'+sfontSize.split(",")[quant-1]+'; color:'+eval("subMenu"+quant)[x][y][1]+'"id="'+quant+'subLink'+x+y+'">'+eval("subMenu"+quant)[x][y][0]+'</p></td></tr>');
        }
        else
        {
          document.writeln ('<td id="'+quant+'subMenu'+x+y+'" class="rcSubMenuStatic'+quant+'" onMouseOver="hoverMenu(); highlightMenu(\'sub\','+x+','+y+',\'\','+quant+')" onMouseOut="clearMenu('+quant+','+x+');" onclick="tdMouseClick(\''+quant+'subLink'+x+y+'\')" nowrap')
          if (menuStyle.split(",")[quant-1].toLowerCase() == "3d"){document.writeln ('style="border-left:'+cellBorder+'px solid '+sborderHighlight.split(",")[quant-1]+';border-top:'+cellBorder+'px solid '+sborderHighlight.split(",")[quant-1]+';border-right:'+cellBorder+'px solid '+sborderShadow.split(",")[quant-1]+';border-bottom:'+cellBorder+'px solid '+sborderShadow.split(",")[quant-1]+';"');}
          document.writeln ('><a id="'+quant+'subLink'+x+y+'" href="'+eval("subMenu"+quant)[x][y][1]+'" target="'+eval("subMenu"+quant)[x][y][2]+'" class="rcSubMenuStatic'+quant+'">'+eval("subMenu"+quant)[x][y][0]+'</a></td></tr>');
        }
      }

      document.writeln ('</table></div>');
    }
  }
}
// Change colour or menu and submenu items when the mouse hovers over.  
function highlightMenu(element,mainMenu,dropMenu,state,quant)
{
  hoverMenu();
  state=(state == "hover")?"rcMenuHover"+quant:"rcMenuStatic"+quant
  if (element == "sub")
  {
    for (x=0; x < eval("subMenu"+quant)[mainMenu].length; x++)
    {
      if (eval("subMenu"+quant)[mainMenu][x][1].indexOf("#") == -1){
        eval(obj+'("'+quant+'subMenu'+mainMenu+x+'").className = "rcSubMenuStatic'+quant+'"')
        eval(obj+'("'+quant+'subLink'+mainMenu+x+'").className = "rcSubMenuStatic'+quant+'"')
      }
    }
    if (eval("subMenu"+quant)[mainMenu][dropMenu][1].indexOf("#") == -1)  {
      eval(obj+'("'+quant+'subMenu'+mainMenu+dropMenu+'").className="rcSubMenuHover'+quant+'"')
      eval(obj+'("'+quant+'subLink'+mainMenu+dropMenu+'").className="rcSubMenuHover'+quant+'"')
    }
  }
  else
  {
    eval(obj+'("'+quant+'cell'+mainMenu+'").className = "'+state+'"')
    eval(obj+'("'+quant+'mainLink'+mainMenu+'").className = "'+state+'"')
    if (subIndicate == 1&&eval("subMenu"+quant)[mainMenu].length>=1)
    {
      eval(obj+'("'+quant+'cell'+mainMenu+'a").className = "'+state+'"')
      eval(obj+'("'+quant+'mainLink'+mainMenu+'a").className = "'+state+'"')
    }
  }
}
// Find positioning for sub menus
function getOffset(obj, dim)
{
  if(dim=="left")
  {    
    oLeft = obj.offsetLeft;    
    while(obj.offsetParent!=null)
    {    
      oParent = obj.offsetParent    
      oLeft += oParent.offsetLeft
      obj = oParent       
    }
    return oLeft
  }
  else if(dim=="top")
  {
    oTop = obj.offsetTop;
    while(obj.offsetParent!=null)
    {
      oParent = obj.offsetParent
      oTop += oParent.offsetTop
      obj = oParent       
    }
    return oTop
  }
  else if(dim=="width")
  {
    oWidth = obj.offsetWidth
    return oWidth
  }  
  else if(dim=="height")
  {
    oHeight = obj.offsetHeight
    return oHeight
  }    
  else
  {
    alert("Error: invalid offset dimension '" + dim + "' in getOffset()")
    return false;
  }
}
// Show sub menus
function popDown(quant, param, id, orientation)
{
  var cellBorderOffset = (isNS6)?cellBorder:eval(cellBorder*2)
  var browserAdjustment = (isNS6)?cellBorder:0
  var menu;
  var button;

  if (id)
  {    
    getOffset(eval(obj+'(id)'),'left');
    getOffset(eval(obj+'(id)'),'top');    
    getOffset(eval(obj+'(id)'),'width');  
    getOffset(eval(obj+'(id)'),'height');
   
    if (eval("Menu"+quant+"["+param+"][3]")=="right" && eval("subMenu"+quant+"["+param+"].length")>0)
    {
      oLeft=oLeft  
      oLeft=oLeft+oWidth;
      getOffset(eval(obj+'("'+quant+'MENU'+param+'")'),'width');
      oLeft=oLeft-oWidth ;
      alignAdjustment = cellBorder*2 + 1
    }
    else
    {
      alignAdjustment = 0
      oLeft=oLeft
    }    
  }  

 
  n = 0;    
  while (n < eval("Menu"+quant).length)
  {          
    menu = quant+"MENU"+n
    if (param == n)
    {

      theObj = eval(obj+'(menu)');
      if (theObj)
      {
         theObj.style.visibility = "visible"
          if (orientation.toLowerCase()=="vertical"){
            theObj.style.left=(menuStyle.split(",")[quant-1].toLowerCase()=="flat")?oLeft+oWidth+cellBorder+parseInt(horizontalOffset.split(",")[quant-1]):oLeft+oWidth+cellBorderOffset+parseInt(horizontalOffset.split(",")[quant-1]);
            theObj.style.top=(menuStyle.split(",")[quant-1].toLowerCase()=="flat")?oTop-cellBorder+parseInt(verticalOffset.split(",")[quant-1]):oTop+parseInt(verticalOffset.split(",")[quant-1])-browserAdjustment}
          else{
            theObj.style.left=(menuStyle.split(",")[quant-1].toLowerCase()=="flat")?oLeft-cellBorder+parseInt(horizontalOffset.split(",")[quant-1])+alignAdjustment:oLeft+parseInt(horizontalOffset.split(",")[quant-1])-browserAdjustment+alignAdjustment;
            theObj.style.top=(menuStyle.split(",")[quant-1].toLowerCase()=="flat")?oTop+oHeight+cellBorder+parseInt(verticalOffset.split(",")[quant-1]):oTop+oHeight+cellBorderOffset+parseInt(verticalOffset.split(",")[quant-1]);}
        }
     
       highlightMenu('main',n,'','hover',quant)
       if (eval("subMenu"+quant)[param].length > 0)
       {
         for (x=0; x<eval("subMenu"+quant)[param].length; x++)
         {
           if(eval("subMenu"+quant)[param][x][1].indexOf("#") == -1){
             eval (obj+'("'+quant+'subMenu'+param+x+'").className = "rcSubMenuStatic'+quant+'"')
             eval (obj+'("'+quant+'subLink'+param+x+'").className = "rcSubMenuStatic'+quant+'"')  
           }      
         }
       }
    }
    else
    {  
      for (x=1; x<quantity+1; x++)
      {      
        menu = x+"MENU"+n  
        //alert(menu)    
        if (eval(obj+'(menu)'))
        {
          eval(obj+'(menu).style.visibility = "hidden"')            
        }
        highlightMenu ('main',n,'','static',quant)
      }
    }

    n++
  }  
}
// Re-set timer for sub menus
function hoverMenu()
{
  if(timer)
  clearTimeout(timer)
}
// Set timer for sub menus
function clearMenu(quant,menu)
{
  setDelay = subMenuDelay*1000
  delay = (eval("subMenu"+quant)[menu].length > 0)?setDelay:1
 
  timer = setTimeout("popDown("+quant+","+(eval("Menu"+quant).length + 1)+")",delay)
}
// when you click the box, perform the same function as if the user had clicked the hyperlink
function tdMouseClick(theElement)
{
  eval(obj+'(theElement).click()')
}

//-->

HTML Page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<meta http-equiv="Language" content="en-us"/>
<meta name="author" content="This site is managed by the U.S. Army Garrison Picatinny DOIM Office, New Jersey, USA." />
<meta name="Description" content="ProcNet" />
<meta name="Publisher" content="DOIM" />
<meta name="Webmaster" content="Marc Ivry" />
<meta name="Creation" content="30-Sept-2007" />
<meta name="keywords" content="Picatinny, ProcNet, US Army JM&L LCMC Acquisition Center, Procurement Network, JM&L, LCMC, Acquisition, solicitation download, bidders mailing list, Army Procurement" />
<link rel="shortcut icon" href="/images/acq_logo_small.ico" />
<!-- InstanceBeginEditable name="doctitle" -->
<meta http-equiv="Pragma" content="no-cache" />
<title>US Army JM&L LCMC Acquisition Center - Procurement Network</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style1 {color: #FF0000}
-->
</style>
<!-- InstanceEndEditable -->
<!-- Hide standards-based css from IE browsers, hide non-standards css from others -->

<!--[if lt IE 7]> <link href="../css/ie6styles.css" rel="stylesheet"  media="screen" type="text/css"> <![endif]-->
<!--[if IE 7]><link href="../css/ie7styles.css" rel="stylesheet"  media="screen" type="text/css"> <![endif]-->
<!--[if !IE]><link href="..css/styles.css" rel="stylesheet"  media="screen" type="text/css"><![endif]-->

<link href="css/print.css" rel="stylesheet" media="print" type="text/css"/>

<script type="text/javascript" language="javascript" src="js/menu_content.js"></script>
<script type="text/javascript" language="javascript">

var navName = navigator.appName;
      
      if(navName.indexOf("Netscape") != -1) {
      alert("Your browser is not the US Army standard, it will not work on this site. Please use IE 5.5 or above.");
      }
      else if(navName.indexOf("Safari") != -1) {
      alert("Your browser is not the US Army standard, it will not work on this site. Please use IE 5.5 or above.");
      }
      else if(navName.indexOf("Firefox") != -1) {
      alert("Your browser is not the US Army standard, it will not work on this site. Please use IE 5.5 or above.");
      }
      else if(navName.indexOf("Mozilla") != -1) {
      alert("Your browser is not the US Army standard, it will not work on this site. Please use IE 5.5 or above.");
      }

</script>
</head>
<body>
<div id="container">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="700px">                        <!--OPEN container-->
<div id="header" style="width: 700px;">                              <!--OPEN header-->
<!-- **************************************** -->
<!-- THIS IS THE HEADER, THE BACKGROUND IMAGE IS A 110 PIXEL BY 955 PIXEL PROCNET_HEADER.PNG IN THE IMAGES FOLDER -->
<!-- **************************************** -->
<!-- InstanceBeginEditable name="header" --><!-- InstanceEndEditable --> </div></td>
    <td width="255px">
      
<div id="slideshow">
<script type="text/javascript" language="javascript" >



//Specify the slider's width (in pixels)
var sliderwidth="255px"
//Specify the slider's height
var sliderheight="110px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=2
//configure background color:
slidebgcolor="#c6c9b4"

//Specify the slider's images
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<img src="/images/slideshow/procnet_image1.jpg" border=0>'
leftrightslide[1]='<img src="/images/slideshow/procnet_image2.jpg" border=0>'
leftrightslide[2]='<img src="/images/slideshow/procnet_image5.jpg" border=0>'
leftrightslide[3]='<img src="/images/slideshow/procnet_image4.jpg" border=0>'
leftrightslide[4]='<img src="/images/slideshow/procnet_image7.jpg" border=0>'
leftrightslide[5]='<img src="/images/slideshow/procnet_image6.jpg" border=0>'
leftrightslide[6]='<img src="/images/slideshow/procnet_image8.jpg" border=0>'
leftrightslide[7]='<img src="/images/slideshow/procnet_image3.jpg" border=0>'
leftrightslide[8]='<img src="/images/slideshow/procnet_image9.jpg" border=0>'
leftrightslide[9]='<img src="/images/slideshow/procnet_image10.jpg" border=0>'
leftrightslide[10]='<img src="/images/slideshow/procnet_image11.jpg" border=0>'

//Specify gap between each image (use HTML):
var imagegap=""

//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=0


////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeed=slidespeed
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
var actualwidth=''
var cross_slide, ns_slide

function fillup(){
if (iedom){
cross_slide=document.getElementById? document.getElementById("test2") : document.all.test2
cross_slide2=document.getElementById? document.getElementById("test3") : document.all.test3
cross_slide.innerHTML=cross_slide2.innerHTML=leftrightslide
actualwidth=document.all? cross_slide.offsetWidth : document.getElementById("temp").offsetWidth
cross_slide2.style.left=actualwidth+slideshowgap+"px"
}
else if (document.layers){
ns_slide=document.ns_slidemenu.document.ns_slidemenu2
ns_slide2=document.ns_slidemenu.document.ns_slidemenu3
ns_slide.document.write(leftrightslide)
ns_slide.document.close()
actualwidth=ns_slide.document.width
ns_slide2.left=actualwidth+slideshowgap
ns_slide2.document.write(leftrightslide)
ns_slide2.document.close()
}
lefttime=setInterval("slideleft()",30)
}
window.onload=fillup

function slideleft(){
if (iedom){
if (parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
else
cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"

if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
else
cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"

}
else if (document.layers){
if (ns_slide.left>(actualwidth*(-1)+8))
ns_slide.left-=copyspeed
else
ns_slide.left=ns_slide2.left+actualwidth+slideshowgap

if (ns_slide2.left>(actualwidth*(-1)+8))
ns_slide2.left-=copyspeed
else
ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
}
}


if (iedom||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (iedom){
write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>')
write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}

</script>
</div>      
      </td>
  </tr>
</table>
                                    
<!--CLOSE header-->

<div id="holder">                              <!--OPEN column holder-->
<div align="left" id="menu">


<div id="l_col">                              
<!--OPEN left column-->      
<script type="text/javascript" language="javascript">showMenus(1,'Vertical')</script>


<!-- InstanceBeginEditable name="left column" -->

      
<!-- InstanceEndEditable -->

</div>

<div id="c_col">
      <div align="right"><a href="javascript:window.print()">Send To Printer</a>&nbsp;&nbsp;&nbsp;</div>      
<!-- InstanceBeginEditable name="center column" -->
      <h1 class="title">Welcome to ProcNet</h1>
      <br />

<script type="text/javascript">

/***********************************************
* Fading Scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var delay = 2000; //set delay between message change (in miliseconds)
var maxsteps=30; // number of steps to take to change from start color to endcolor
var stepdelay=40; // time in miliseconds of a single step
//**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect
var startcolor= new Array(255,255,255); // start color (red, green, blue)
var endcolor=new Array(0,0,0); // end color (red, green, blue)

var fcontent=new Array();
begintag='<div style="text-align: center; font: bold 12px Arial; padding: 5px;">'; //set opening tag, such as font declarations
fcontent[0]="<b>What\'s new?</b> with ProcNet. <a class='fader' href='index.htm'>Click here to visit</a>";
fcontent[1]="<a class='fader' href='http://procnet.pica.army.mil/FutureBuy/FutureBuy.pdf'>Future Buy (FY08 Projections)</a>";
fcontent[2]="<a class='fader' href='bml.htm'>Bidder\'s Mailing List</a>";
closetag='</div>';

var fwidth='750px'; //set scroller width
var fheight='25px'; //set scroller height

var fadelinks=1;  //should links inside scroller content also fade like text? 0 for no, 1 for yes.

///No need to edit below this line/////////////////


var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;
var faderdelay=0;
var index=0;


/*Rafael Raposo edited function*/
//function to change content
function changecontent(){
  if (index>=fcontent.length)
    index=0
  if (DOM2){
    document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
    document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
    if (fadelinks)
      linkcolorchange(1);
    colorfade(1, 15);
  }
  else if (ie4)
    document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag;
  index++
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

function linkcolorchange(step){
  var obj=document.getElementById("fscroller").getElementsByTagName("A");
  if (obj.length>0){
    for (i=0;i<obj.length;i++)
      obj[i].style.color=getstepcolor(step);
  }
}

/*Rafael Raposo edited function*/
var fadecounter;
function colorfade(step) {
  if(step<=maxsteps) {      
    document.getElementById("fscroller").style.color=getstepcolor(step);
    if (fadelinks)
      linkcolorchange(step);
    step++;
    fadecounter=setTimeout("colorfade("+step+")",stepdelay);
  }else{
    clearTimeout(fadecounter);
    document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")";
    setTimeout("changecontent()", delay);
      
  }  
}

/*Rafael Raposo's new function*/
function getstepcolor(step) {
  var diff
  var newcolor=new Array(3);
  for(var i=0;i<3;i++) {
    diff = (startcolor[i]-endcolor[i]);
    if(diff > 0) {
      newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
    } else {
      newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
    }
  }
  return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
}

if (ie4||DOM2)
  document.write('<div id="fscroller" style="border:0px; width:'+fwidth+';height:'+fheight+'"></div>');

if (window.addEventListener)
window.addEventListener("load", changecontent, false)
else if (window.attachEvent)
window.attachEvent("onload", changecontent)
else if (document.getElementById)
window.onload=changecontent

</script>
<table width="100%" border="0">
  <tr>
    <td width="50%" valign="top"><div class="content">The Procurement Network (<b>ProcNet</b>) is JM&amp;L LCMC Acquisition Center Electronic
Commerce Home Page on the World Wide Web (<b>WWW</b>) for unclassified procurement actions, generally over $100,000. Procnet includes digitized forms and
drawings that can be accessed and downloaded by interested contractors.  To date, it has been well
received by Industry with many congratulations for being at the leading the edge of
electronic commerce technology.  <a href="intro/tools.htm">Tools (hardware and software)</a>
needed to access ProcNet or surf other WWW sites are also identified. ProcNet can be
accessed via the WWW using the following address: <b>http://procnet.pica.army.mil</b></div></td>
    <td width="50%"><b>WHAT IS PROCNET?</b>

<ul>
  <li><b>Introduction: </b></li>
  <li>ProcNet stands for Procurement Information Network.
    It is a World Wide Web (WWW) server for electronic Commerce (EC) on the Internet.</li>
</ul>

<ul>
  <li><b>Goals:</b></li>
  <li>Enhance information sharing.</li>
  <li>Provide linkages with other sites (government/private industries,
    colleges/universities, research laboratories.)</li>
  <li>Reduce procurement cycle time.</li>
  <li>Contributes to a paperless office.</li>
</ul></td>
  </tr>
</table>





            
                  <h1 class="subTitle">ProcNet Links</h1>
                  <br /><br />
             
            <table width="78%" border="0" align="center">
  <tr>
    <td class="navbuttons"><a href="/dbi/DynCBD/ProcNetsolicitation.cfm" title="Solicitations Download">Solicitations Download</a></td>
    <td class="navbuttons"><a href="/dbi/Search.htm" title="Solicitation Search">Solicitation Search</a></td>
    <td class="navbuttons"><a href="/dbi/DynCBD/ProcNetSourcesSought.cfm" title="Sources Sought">Sources Sought</a></td>
    <td class="navbuttons"><a href="/intro/Submitrf.htm" title="Submit Bids/Proposals">Submit Bids/Proposals</a></td>
    <td class="navbuttons"><a href="http://www.fbo.gov" title="Fed Biz Ops">Fed Biz Ops</a></td>            
  </tr>
  <tr>
     <td class="navbuttons"><a href="/bml.htm" title="Bidders Mail Lists">Bidders Mail Lists</a></td>         
       <td class="navbuttons"><a href="/dbi/DynCBD/ProcNetaward.cfm" title="Contract Awards Download">Contract Awards Download</a></td>
    <td class="navbuttons"><a href="/dbi/Search.htm" title="Contract Search">Contract Search</a></td>
    <td class="navbuttons"><a href="http://www.ccr.gov" title="CCR Registration">CCR Registration</a></td>
    <td class="navbuttons"><a href="https://acquisition.army.mil/asfi" title="Army Single Face to Industry (ASFI)">Army Single Face to Industry (ASFI)</a></td>  
  </tr>
  <tr>
    <td class="navbuttons"><a href="https://wawf.eb.mil/" title="Wide Area Work Flow (WAWF)">Wide Area Work Flow (WAWF)</a></td>
    <td class="navbuttons"><a href="http://eda.ogden.disa.mil/eda_main.htm" title="Electronic Document Access (EDA)">Electronic Document Access (EDA)</a></td>                  
    <td class="navbuttons"><a href="https://www.fpds.gov" title="Federal Procurement Data System (FPDS-NG)">Federal Procurement Data System</a></td><!-- (FPDS-NG)-->
    <td class="navbuttons"><a href="http://www.pica.army.mil/smallbusinessprogram/" title="Small Business Office">Small Business Office</a></td>
    <td class="navbuttons"><a href="/intro/FAQ.htm" title="Important FAQs">Important FAQs</a></td>         
  </tr>
    <tr>
    <td class="navbuttons"><a href="/intro/PAC Org chart rev 1.ppt" title="Our Organization">Our Organization</a></td>
    <td class="navbuttons"><a href="http://contracting.tacom.army.mil/userguide.htm" title="Future Opportunities">Future Opportunities</a></td>
    <td class="navbuttons"><a href="#" title="Competition Advocate">Competition Advocate</a></td>      
    <td class="navbuttons"><a href="/intro/intro.htm" title="PROCNET Intro">PROCNET Intro</a></td>
    <td class="navbuttons"><a href="https://cpolwapp.belvoir.army.mil/public/vabSelfNom/index.jsp" title="PROCNET Intro">Employment Opportunity</a></td>            
  </tr>
</table>
    <p></p>
      
              <table width="100%" border="0">
          <tr>
            <td width="50%" class="content"><A href="/survey/customer_survey.htm">Take the Customer Survey for Contractors</a></td>
            <td width="50%" class="content">If you are a Government Agency and would like to use ProcNet to upload your solicitations,
    please contact our <a href="mailto:procnet@pica.army.mil">ProcNet Team</a> to get registered. Thanks for visiting our site.</td>
          </tr>
        </table>
   
    <p><span class="style1">WARNING:</span> Do NOT use ProcNet for any information or data   that is Classified, Military Critical, Sensitive, Privacy Act, Copyrighted, or   otherwise restrictive in nature.</p>

            <div class="grayRegion">
                              <div class="subTitle">For our visitors with disabilities</div>
<div class="content">we have endeavored to make this site usable by persons with disabilities,
however if we have failed or you see an area for improvement please send
your comments to <A HREF="MAILTO:procnet@pica.army.mil">procnet@pica.army.mil</A>.
<BR>...Thank you</div>      
            </div>
<!-- InstanceEndEditable --></div>                                                


<div id="footer">                              <!--OPEN footer-->
<!-- InstanceBeginEditable name="footer" -->
<!-- **************************************** -->
<!-- THIS DIV IS THE FOOTER, PUT YOUR LINKS IN THE LIST BELOW -->
<!-- **************************************** -->      <!-- InstanceEndEditable -->
<!-- **************************************** -->
<!-- THIS DIV IS THE FOOTER, PUT YOUR LINKS IN THE LIST BELOW -->
<!-- **************************************** -->

      <div class="footerLinks" id="container">
      <table width="100%" border="0">
  <tr>
    <td><a href="http://www.cast.org/bobby"><img src="/images/BobbyApproved.gif" /></a></td>
    <td><ul>
                  <li><a href="/index.htm" id="fscroller">Procnet Home</a></li>
                                    <li><a href="http://www.pica.army.mil/PicatinnyPublic/index.asp">Picatinny Home</a></li>
                  <li><a href="/intro/FAQ.htm">FAQ's</a></li>
                  <li><a href="mailto:procnet@pica.army.mil">Contact Webmaster</a></li>
                  <li style="vertical-align:bottom;"></li>
            </ul></td>
  </tr>
</table>
</div>            
<!--CLOSE footer-->
</div>
             
 </div>            
                                          
<!--CLOSE container-->
</div>
</div>
</body>
<!-- InstanceEnd --></html>
[+][-]10/30/07 07:01 AM, ID: 20177173Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/30/07 11:30 AM, ID: 20179700Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/31/07 07:17 AM, ID: 20185678Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/31/07 08:01 AM, ID: 20186085Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/31/07 08:58 AM, ID: 20186592Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/31/07 09:26 AM, ID: 20186850Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/31/07 09:46 AM, ID: 20187019Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Cascading Style Sheets (CSS), JavaScript
Tags: javascript, print, css, display, using
Sign Up Now!
Solution Provided By: hielo
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628