Main Page Content
Third Column Slickness Screen Size Customization
The techniques involves using a ILayer or IFrame (NS4 and others respectively) to bring in another page of content. One side effect is that this is also a technique for including content from a separate site. In this case, I'm using table with alignment wrapped around the iframe/ilayer to avoid having to alter any of the other markup on the page
if (document.layers document.getElementById) {
screenwidth = window.innerWidth; screenheight = window.innerHeight;}if (document.all ) { screenwidth = document.body.clientWidth; screenheight = document.body.clientHeight;}if(screenwidth > 800) {
if(document.layers) { document.write('<table align="right" width="180"><tr><td> </td><td><ilayer src="/blogger/featured.cfm" width="180" height="' + screenheight + '" scrolling="no"></ilayer></td></tr></table>'); } else { if(document.all document.getElementById) { document.write('<table align="right" width="180"><tr><td> </td><td><iframe src="/blogger/featured.cfm" width="180" height="' + screenheight + '" scrolling="no"></iframe></td></tr></table>'); } } }