// JavaScript Document
function setW(m,d){
var innerX = 0;
if (self.innerWidth) {
	innerX = self.innerWidth;
} 

if (document.documentElement && document.documentElement.clientWidth) {
	innerX = document.documentElement.clientWidth;
} 

if (document.body.clientWidth) {
	innerX = document.body.clientWidth - 5;
}
innerX = innerX - 104 - m;
innerX = innerX/d;
document.writeln("<img src='../scripts/img/spacer.gif' height='1' width='" + innerX + "' hspace='0' vspace='0' border='0'>");
}

function setH(m,d){
var innerY = 0;
if (self.innerHeight) {
	innerY = self.innerHeight;
} 

if (document.documentElement && document.documentElement.clientHeight) {
	innerY = document.documentElement.clientHeight;
} 

if (document.body.clientHeight) {
	innerY = document.body.clientHeight - 5;
}
innerY = innerY - 190 - m;
innerY = innerY/d;
document.writeln("<img src='../scripts/img/spacer.gif' width='1' height='" + innerY + "' hspace='0' vspace='0' border='0'>");
}