function abrir(cual){open(cual,'_self','')}

function abrir2(cual){open(cual,'_blank','')}

function abre(cual,width,height){
	w2=width/2;
	h2=height/2;
	parametros="width="+width+",height="+height+",menubar=no";
	hija = open(cual,'temp',parametros)
	x = (screen.width/ 2)- w2;
	y = (screen.height/2) - h2; 
	hija.moveTo(x, y); 
}

function modal(url,w,h,t){
    Shadowbox.open({
		content: url,
		type:    "iframe",
		player:  "iframe",
		title:   t,
        width:   w,
		height:  h
	});
}
	
function modal2(url){
    Shadowbox.open({
		content: url
	});
}
	
