//This javascript checks the clients browser type (NS / IE) for writing the required css for the body tag 
if (navigator.appName == "Netscape" && parseInt(navigator.appVersion)==4)
				document.write("<style type='text/css'>body {margin: -10px}</"+"style>");
			else
				document.write("<style type='text/css'>body {margin:0px 0px 0px 0px; padding:0px 0px 0px 0px}</"+"style>");