// JavaScript Document
			<!--
			atrib_popup="topmargin=0, leftmargin=0, toolbar=no, location=no, directories=no, status=yes, menubar=no, resizable=no"
			align_popup_horiz="width=660, height=500, left=0, top=0, scrollbars=no"
			align_popup_vert="width=500, height=660, left=0, top =0, scrollbars=no"
			align_popup_grande="width=910, height=620, left=0, top=0, scrollbars=no"
			
			function PopUp_Horiz(url) {
			h = window.open(url,"horizontais", atrib_popup + ', ' + align_popup_horiz);
			h.focus();
			}

			function PopUp_Verti(url) {
			v = window.open(url,"verticais", atrib_popup + ', ' + align_popup_vert);
			v.focus();
			}
			
			function PopUp_Grande(url) {
			a = window.open(url,"grande", atrib_popup + ', ' + align_popup_grande);
			a.focus();
			}
			
			
			// -->