window.onresize=Posicionar;

function Posicionar () {
var Alto = -1;
var Ancho = -1;
if (IE5) {
	Alto=document.body.clientHeight;
	Ancho=document.body.clientWidth;
	}
if (GKO) {
	Alto=parseInt(document.defaultView.getComputedStyle(document.getElementById('C3'), null).getPropertyValue("height"));
	Ancho=parseInt(document.defaultView.getComputedStyle(document.getElementById('C2'), null).getPropertyValue("width"));
	}
if (Alto !=-1) {
	if (Alto>630) document.getElementById('C1').style.top=parseInt((Alto-630)/2)+'px';
	else document.getElementById('C1').style.top='0px';
	}
if (Ancho !=-1) {
	if (Ancho<640) {
		document.getElementById('C1').style.left='0%';
		document.getElementById('C1').style.marginLeft='0px';
		}
	else {
		document.getElementById('C1').style.left='50%';
		document.getElementById('C1').style.marginLeft='-320px';
		}
	}
}	