function openVideo(){
	var width = 650;
	var height = 500
	hcontainer_left = getposOffset(document.getElementById('content-l'), "left");

	var left_diff = 450 - width / 2;
	
	window.open('http://www.empire75.com/video.html','overlayer','toolbar=no, left=' + (hcontainer_left-left_diff) + ', top=100, location=no, directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+ width +', height='+height); return false;

}

function getposOffset(what, offsettype){
	var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null){
		totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl=parentEl.offsetParent;
	}
	return totaloffset;
}
