// JavaScript Document
	var myWidth = 0, myHeight = 0;
	var browserHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    browserHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    browserHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    browserHeight = document.body.clientHeight;
  }
  marginLeft=((myWidth-550)/2)-10;
	if(browserHeight > 430){
		marginTop = ((browserHeight - 430)/2) - 25;
		document.write("<style type='text/css'>");
		document.write("#maincontainer{");
		document.write("margin-top:"+marginTop+"px;");
		//document.write("margin-left:"+marginLeft+"px;");
		document.write("}");
		document.write("</style>");
	}
	else{
		document.write("<style type='text/css'>");
		document.write("#maincontainer{");
		document.write("margin:0px auto");
		document.write("}");
		document.write("</style>");
	}
