function PositionMenuBar(middleOrPxFromTop) { 
if (middleOrPxFromTop=="middle") {
	document.getElementById("logo").style.top = (GLOBALwindowHeight/2-39)+"px";
	document.getElementById("menubar").style.top = (GLOBALwindowHeight/2-20)+"px";
	document.getElementById("menutext").style.top = (GLOBALwindowHeight/2-20)+"px";
	document.getElementById("submenubar").style.top = (GLOBALwindowHeight/2+9)+"px";
	document.getElementById("submenutext").style.top = (GLOBALwindowHeight/2+19)+"px";
	document.getElementById("menumouseout").style.top = (GLOBALwindowHeight/2-21)+"px";
}
else {
	document.getElementById("logo").style.top = middleOrPxFromTop+"px";
	document.getElementById("menubar").style.top = middleOrPxFromTop+19+"px";
	document.getElementById("menutext").style.top = middleOrPxFromTop+19+"px";
	document.getElementById("submenubar").style.top = middleOrPxFromTop+49+"px";
	document.getElementById("submenutext").style.top = middleOrPxFromTop+59+"px";
	document.getElementById("menumouseout").style.top = middleOrPxFromTop+18+"px";
}
document.getElementById("logo").style.visibility="visible"
document.getElementById("menubar").style.visibility="visible"
document.getElementById("menutext").style.visibility="visible"
document.getElementById("menumouseout").style.visibility="visible"
}

function PositionBoilerplate() { 
  if (document.testsize) {
  document.getElementById("boilerplate").style.top = (GLOBALwindowHeight-20)+"px";
  }
  else {
  document.getElementById("boilerplate").style.bottom = 0;
  }
  document.getElementById("boilerplate").style.visibility="visible"
}

function PositionPanel(panelId,pxWidth,pxHeight,pxFromLeftOrCenter,pxFromTopOrAboveMiddleOrBelowMiddle) { 
if (pxFromTopOrAboveMiddleOrBelowMiddle=="AboveMiddle") {
	document.getElementById(panelId).style.top = (GLOBALwindowHeight/2-20-pxHeight)+"px";
    document.getElementById(panelId).style.height=pxHeight+"px"
}
else {
  if (pxFromTopOrAboveMiddleOrBelowMiddle=="BelowMiddle") {
	document.getElementById(panelId).style.top = (GLOBALwindowHeight/2+20)+"px";
  }
  else /* n of px */ {
	document.getElementById(panelId).style.top = pxFromTopOrAboveMiddleOrBelowMiddle+"px";
  }
}
document.getElementById(panelId).style.width=pxWidth+"px"
if (pxFromLeftOrCenter=="center") {
document.getElementById(panelId).style.left = (GLOBALwindowWidth/2-pxWidth/2)+"px"
}
else {
  document.getElementById(panelId).style.left = pxFromLeftOrCenter+"px"
}
document.getElementById(panelId).style.visibility = "visible"
}

function PositionFlashContent() { 
	document.getElementById("flashContent").style.top = (GLOBALwindowHeight/2-187)+"px";
	document.getElementById("flashContent").style.left = (GLOBALwindowWidth/2-295)+"px";
	document.getElementById("flashContent").style.background = "#060000";
    document.getElementById("myId").style.visibility="visible"
} 

function PositionShopLogo() { 
document.getElementById("shoplogoimg").style.width = Math.floor(GLOBALwindowWidth*0.75)+"px";
document.getElementById("shoplogoimg").style.height = Math.floor(GLOBALwindowHeight*0.75)+"px";
document.getElementById("shoplogo").style.top = Math.floor(GLOBALwindowHeight*0.125)+"px";
document.getElementById("shoplogo").style.left = Math.floor(GLOBALwindowWidth*0.125)+"px";
document.getElementById("shoplogo").style.visibility="visible"
} 





