// JavaScript Document
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
function mod_width ()
{ if (isIE) {return '100%';} else {return document.documentElement.clientWidth-50;}}
function mod_height ()
{ if (isIE) {return '100%';} else {return document.documentElement.clientHeight;}}
