function trabajaJorge(x,y)
{
var ie= (document.all)? true:false
var ns4 = (document.layers)? true:false
var ns6=( document.getElementById && !document.all)?true:false

		if (x!=null) {
			this.x = x
			if (ns4 || ns6) this.left = this.x
			else this.pixelLeft = this.x
		}
		if (y!=null) {
			this.y = y
			if (ns4|| ns6) this.top = this.y
			else this.pixelTop = this.y
		}
}

var win = null;
function ketsi(pag,pos)
{
//	trabajaJorge("20","+pos+")
/*
window.open(pag,"","width=10,height=10,toolbar=no,status=no,scrollbars=no,resizable=no")
*/

resi="no";
w="10";
h="10";

LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=no'
win = window.open(pag,'Lima',settings)

if(win.window.focus){win.window.focus();}

}
