//
function getwidth() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var width = (document.body.clientWidth);
return width;
} else {                                                
var width = (window.innerWidth);
return width;
}
return;      
}
// End -->
//
function getheight() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var height = (document.body.clientHeight);
return height;
} else {                                                
var height = (window.innerHeight);
return height;
}
return;      
}
// End -->

<!-- Begin
var Top = 155;
//var Top = Math.round(((getheight()-480)/2)+30);
var Left = Math.round(((getwidth()-890)/2)+74);
//document.write(Left);
// End -->
