<!-- APPLYFILTER IMAGE -->

function ApplyFilter() {
var imgName,image,objStr = ApplyFilter.arguments[0];
image = document.getElementById (objStr);
image.onload = null;
imgName = ApplyFilter.arguments[1];
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer") {
image.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingmethod=scale, src='" + imgName + "' );"
}
else {
image.src = imgName;
}
}

<!-- ANTI FRAMES -->

window.moveTo(0,0);
if (document.all)
{
window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers)
{
if (window.outerHeight<screen.availHeight||window.outerWidth<screen.availWidth)
{
window.outerHeight = screen.availHeight;
window.outerWidth = screen.availWidth;
}
}
if (top.frames.length!=0) top.location=self.document.location;

