// JavaScript Document

var isIE = (document.getElementById && document.all)?true:false;
var isNS4 = (document.layers)?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;

function fj_prototype(url, p_id, aj_id, x, y, w, h)
{
	//	<!-- divs para o prototype -->

	
	
	// cria os divs para o prototype
	// criado pelo foot
	y = y - (h/2);
	if (y < 120)
	{
		y = 120;	
	}
	
	// exibe o div
	fj_div_display(p_id, 1);
	
	// chama página em ajax
	fj_ajax(url, aj_id);


		o = document.getElementById(p_id);
		a = document.getElementById(aj_id);
		
	// move a página para as coordenadas do mouse
		o.style.left = x + 'px';
		o.style.top = y + 'px';	

	// redimensiona
		o.style.width = w + 'px';
		o.style.height = h + 'px';	
		a.style.height = (h - 50) + 'px';	

}// fim da fun;áo

function fj_prototype_close(id)
{
	if(confirm("You really want to close?"))
	{
		fj_div_display(id,0);
	}
}