/******************************
/********** LEGENDA *********** 
a = nome do arquivo (pagina.html ou pagina.asp)
b = nome da janela (somente um nome para a janela
x = largura (width) (n)
y = altura (height) (n)
c = toolbar (no/yes)
d = menubar (no/yes)
e = scrollbars (no/yes)
f = resizable (no/yes)
g = directories (no/yes)
h = status (no/yes)
i = location (no/yes)
j = top (n)
l = left (n)
******************************/

function popupWS (a,b,x,y,c,d,e,f,g,h,i,j,l)
	{
		window.open(a,b,'width=' + x + ',height=' + y + ',toolbar= ' + c + ',menubar= ' + d + ',scrollbars=yes' + ',resizable=' + f + ',directories=' + g + ',status=' + h +', location=' + i +', top=' + j +', left=' + l + '');
	}

