/*
    File type: JavaScript;
    File name: script.js;
    File location: '/scripts/';
    Author: IronDuke;
*/

function bodyColumnSize()
{
   var browserWidth = window.document.body.clientWidth;
   var bodyCuffsWidth = 150;//135
   var bodyCenterWidth = browserWidth - 2*bodyCuffsWidth - 18;

    document.write('<tr height="1">' +
    	'<td style = "width: ' +String(bodyCuffsWidth)+ 'px;"><img src="../../images/dot.gif" alt="Das ist Fantastish" height="1" width="'+String(bodyCuffsWidth)+'"></td>' +
        '<td><img src="../../images/dot.gif" alt="Das ist Fantastish" height="1" width="'+String(bodyCenterWidth)+'"></td>' +
        '<td style = "width: ' +String(bodyCuffsWidth)+ 'px;"><img src="../../images/dot.gif" alt="Das ist Fantastish" height="1" width="'+String(bodyCuffsWidth)+'"></td></tr>');		
}

/* END of File */