﻿// JScript File

function janela(hp, width, height)
{
	var w = window.screen.width;
	var h = window.screen.height;
	var l = (w-width)/2;
	var t = (h-height)/2;

	wAbout = window.open(hp, "text", 'fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0' );

	wAbout.blur();
	window.focus();	
	wAbout.resizeTo(width,height);
	wAbout.moveTo(l, t);
	wAbout.focus();
}



