
// WWW Support Services (tm) concepts and systems are proprietary and strictly copyright all rights reserved since 1996. Use on servers, imitation and duplication of any part of a system including: look, feel, methodology, functionality and software is strictly prohibited without written license to do so and pre payment of appropriate fees.

top.location.target="_top"
if(window.location.target != "_top"){top.location.href=window.location.href}


// page autosize

var sizefactor=1
var tw=0
var mw=0

function autosize()
{

var cw=0

if(top.document.body && typeof(top.document.body.clientWidth)=='number'){cw=top.document.body.clientWidth} // NS7+, IE5+
else if(typeof(top.innerWidth)=='number'){cw=top.innerWidth} // NS4x, 6x, CS7, Opera

if((cw<1296)||(cw>1440)){

sizefactor=cw/1440

var w=0
var ih=0
mw=0
tw=0
var resizeflag="noresize"
var imgname=""

for(i=0; i<document.images.length; i++){
imgname=document.images[i].name
if(imgname != resizeflag){
document.images[i].width=Math.round(document.images[i].width * sizefactor)
document.images[i].height=Math.round(document.images[i].height * sizefactor)
}
}

document.body.leftMargin=(document.body.leftMargin * sizefactor)
document.body.rightMargin=(document.body.rightMargin * sizefactor)
document.body.topMargin=(document.body.topMargin * sizefactor)

var size
var eachElement
var fontElement=document.getElementsByTagName("font")
for (i=0; i<fontElement.length; i++)
{
eachElement=fontElement[i]
// NS7, Opera
if (document.defaultView){size=document.defaultView.getComputedStyle(eachElement, null).getPropertyValue("font-size")}
// IE6
else if (eachElement.currentStyle){size=eachElement.currentStyle.fontSize}
size=size.substr(0,size.length-2)
eachElement.style.fontSize=Math.round(size*sizefactor)+"px"
}
}
}

