
function legalwindow( page ) {
window.self.name="polarsite";		// name for main window to able the back links to polar site
options =
  "height=280,width=392,resizable=yes,"
+ "screenX=50,screenY=50,"		// netscape
+ "left=50, top=50,"			// IE
+ "location=no,scrollbars=yes,menubar=no,"
+ "toolbar=no,titlebar=no,personalbar=no,"
+ "personalbar=no,directories=no,"
+ "fullscreen=no"; 		// IE only
	window.open(page, "Legal", options);
}

function glossarywindow( page ) {
window.self.name="polarsite";		// name for main window to able the back links to polar site
options =
  "height=280,width=392,resizable=yes,"
+ "screenX=50,screenY=50,"		// netscape
+ "left=50, top=50,"			// IE
+ "location=no,scrollbars=no,menubar=no,"
+ "toolbar=no,titlebar=no,personalbar=no,"
+ "personalbar=no,directories=no,"
+ "fullscreen=no"; 		// IE only
	window.open(page, "glossary", options);
}

function productfinderwindow( page ) {
window.self.name="polarsite";		// name for main window to able the back links to polar site
options =
  "height=324,width=672,resizable=no,"
+ "screenX=50,screenY=50,"		// netscape
+ "left=50, top=50,"			// IE
+ "location=no,scrollbars=no,menubar=no,"
+ "toolbar=no,titlebar=no,personalbar=no,"
+ "personalbar=no,directories=no,"
+ "fullscreen=no"; 		// IE only
	window.open(page, "productfinder", options);
}
function helpwindow( page ) {
window.self.name="polarsite";		// name for main window to able the back links to polar site
options =
  "height=280,width=392,resizable=yes,"
+ "screenX=50,screenY=50,"		// netscape
+ "left=50, top=50,"			// IE
+ "location=no,scrollbars=yes,menubar=no,"
+ "toolbar=no,titlebar=no,personalbar=no,"
+ "personalbar=no,directories=no,"
+ "fullscreen=no"; 		// IE only
	window.open(page, "Help", options);
}

function featurewindow( page, tabs, content ) {
window.self.name="polarsite";		// name for main window to able the back links to polar site
options =
  "height=280,width=392,resizable=no,"
+ "screenX=50,screenY=50,"		// netscape
+ "left=50, top=50,"			// IE
+ "location=no,scrollbars=no,menubar=no,"
+ "toolbar=no,titlebar=no,personalbar=no,"
+ "personalbar=no,directories=no,"
+ "fullscreen=no"; 		// IE only
  gwin=window.open("", "glossary", options);
  gwin.document.write('<html><head><title>Glosario Polar</title>');
  gwin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>');
  gwin.document.write('<frameset rows="91,*" border="0" framespacing="0" frameborder="NO" onLoad="self.focus();">');
  gwin.document.write('<frame src="');
  gwin.document.write(tabs);
  gwin.document.write('" name="tabs" marginwidth="0" marginheight="0" scrolling="NO" frameborder="NO" noresize>');
  gwin.document.write('<frame src="');
  gwin.document.write(content);
  gwin.document.write('" name="content" marginwidth="0" marginheight="0" scrolling="YES" frameborder="NO" noresize>');
  gwin.document.write('</frameset><noframes><body bgcolor="#FFFFFF" text="#000000"></body></noframes></html>');
  gwin.focus();
  gwin.document.close();
}
