// script ouverture de page !

if (parent.frames.length > 0)
{
window.top.location.href = location.href;
}  
window.moveTo(0,0);
if (document.getElementById || 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;
}
}