// JavaScript Document

function openwin(p,h,w) { 
	url = "chat.cfm";
	T = 300; L = 400;
	t = (screen.availHeight / 2) - (T / 2);
	l = (screen.availWidth / 2) - (L / 2);	
	/* t = (screen.availHeight / 2) - (h / 2); 
	l = (screen.availWidth / 2) - (w / 2);  */
	// c = window.open( p, 'DETALLE', 'top=' + t + ',left=' + l + ',width=' + w + ',height=' + h + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' ); 
	c = window.open( p, 'SUBIR', 'top='+t+',left='+l+',width=400,height=300,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
	c.focus(); 
return false; }

