var ie6 = (document.all)?1:0;
var ns7 = (document.getElementById&&!document.all)?1:0;
if (ie6) {
var mwidth = document.body.clientWidth;
document.write("<style>");
document.write("body{margin:0%;}");
if (mwidth>1024) {
document.write("body{margin-left:15%;}");
document.write("body{margin-right:15%;}");
document.write("body{margin-top:3%;}");
document.write("body{margin-bottom:3%;}");
}
document.write("</style>");
}
if (ns7) {
var w1 = window.innerWidth;
document.write("<style>");
document.write("body{margin:0%;}");
if (w1>1024) {
document.write("body{margin-left:15%;}");
document.write("body{margin-right:15%;}");
document.write("body{margin-top:3%;}");
document.write("body{margin-bottom:3%;}");
}
document.write("</style>");
}