function inie(theName){
var screenWidth,screenHeight,theTrueTop,theTrueLeft
if((screen.width==1024)&&(screen.height==768)){
screenWidth=screen.width;
screenHeight=screen.height;
theTrueTop=screenWidth*0.306;
theTrueLeft=screenHeight*0.76;
}else{
if((screen.width==800)&&(screen.height==600)){
screenWidth=screen.width;
screenHeight=screen.height;
theTrueTop=screenWidth*0.392;
theTrueLeft=screenHeight*0.8;
}
}
document.all[theName].style.top=theTrueTop;
document.all[theName].style.left=theTrueLeft;
window.fullscreen();
}