<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%> <% var accessbarrier__MMColParam1 = "access"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam1 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam2 = "barriers"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam2 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam3 = "cultural barriers"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam3 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam4 = "cultural competency"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam4 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam5 = "cross-cultural care"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam5 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam6 = "outreach"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam6 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam7 = "language"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam7 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier__MMColParam8 = "communication"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { accessbarrier__MMColParam8 = String(Request("MM_EmptyValue")); } %> <% var accessbarrier = Server.CreateObject("ADODB.Recordset"); accessbarrier.ActiveConnection = MM_lit_STRING; accessbarrier.Source = "SELECT * FROM AAPI_HEALTH_LIT WHERE Keywords LIKE '%"+ accessbarrier__MMColParam1.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam2.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam3.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam4.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam5.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam6.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam7.replace(/'/g, "''") + "%' OR Keywords LIKE '%"+ accessbarrier__MMColParam8.replace(/'/g, "''") + "%'"; accessbarrier.CursorType = 0; accessbarrier.CursorLocation = 2; accessbarrier.LockType = 1; accessbarrier.Open(); var accessbarrier_numRows = 0; %> <% var Repeat1__numRows = 15; var Repeat1__index = 0; accessbarrier_numRows += Repeat1__numRows; %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var accessbarrier_total = accessbarrier.RecordCount; // set the number of rows displayed on this page if (accessbarrier_numRows < 0) { // if repeat region set to all records accessbarrier_numRows = accessbarrier_total; } else if (accessbarrier_numRows == 0) { // if no repeat regions accessbarrier_numRows = 1; } // set the first and last displayed record var accessbarrier_first = 1; var accessbarrier_last = accessbarrier_first + accessbarrier_numRows - 1; // if we have the correct record count, check the other stats if (accessbarrier_total != -1) { accessbarrier_numRows = Math.min(accessbarrier_numRows, accessbarrier_total); accessbarrier_first = Math.min(accessbarrier_first, accessbarrier_total); accessbarrier_last = Math.min(accessbarrier_last, accessbarrier_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (accessbarrier_total == -1) { // count the total records by iterating through the recordset for (accessbarrier_total=0; !accessbarrier.EOF; accessbarrier.MoveNext()) { accessbarrier_total++; } // reset the cursor to the beginning if (accessbarrier.CursorType > 0) { if (!accessbarrier.BOF) accessbarrier.MoveFirst(); } else { accessbarrier.Requery(); } // set the number of rows displayed on this page if (accessbarrier_numRows < 0 || accessbarrier_numRows > accessbarrier_total) { accessbarrier_numRows = accessbarrier_total; } // set the first and last displayed record accessbarrier_last = Math.min(accessbarrier_first + accessbarrier_numRows - 1, accessbarrier_total); accessbarrier_first = Math.min(accessbarrier_first, accessbarrier_total); } %> <% var MM_paramName = ""; %> <% // *** Move To Record and Go To Record: declare variables var MM_rs = accessbarrier; var MM_rsCount = accessbarrier_total; var MM_size = accessbarrier_numRows; var MM_uniqueCol = ""; MM_paramName = ""; var MM_offset = 0; var MM_atTotal = false; var MM_paramIsDefined = (MM_paramName != "" && String(Request(MM_paramName)) != "undefined"); %> <% // *** Move To Record: handle 'index' or 'offset' parameter if (!MM_paramIsDefined && MM_rsCount != 0) { // use index parameter if defined, otherwise use offset parameter r = String(Request("index")); if (r == "undefined") r = String(Request("offset")); if (r && r != "undefined") MM_offset = parseInt(r); // if we have a record count, check if we are past the end of the recordset if (MM_rsCount != -1) { if (MM_offset >= MM_rsCount || MM_offset == -1) { // past end or move last if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount % MM_size); } else { MM_offset = MM_rsCount - MM_size; } } } // move the cursor to the selected record for (var i=0; !MM_rs.EOF && (i < MM_offset || MM_offset == -1); i++) { MM_rs.MoveNext(); } if (MM_rs.EOF) MM_offset = i; // set MM_offset to the last possible record } %> <% // *** Move To Record: if we dont know the record count, check the display range if (MM_rsCount == -1) { // walk to the end of the display range for this page for (var i=MM_offset; !MM_rs.EOF && (MM_size < 0 || i < MM_offset + MM_size); i++) { MM_rs.MoveNext(); } // if we walked off the end of the recordset, set MM_rsCount and MM_size if (MM_rs.EOF) { MM_rsCount = i; if (MM_size < 0 || MM_size > MM_rsCount) MM_size = MM_rsCount; } // if we walked off the end, set the offset based on page size if (MM_rs.EOF && !MM_paramIsDefined) { if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount % MM_size); } else { MM_offset = MM_rsCount - MM_size; } } // reset the cursor to the beginning if (MM_rs.CursorType > 0) { if (!MM_rs.BOF) MM_rs.MoveFirst(); } else { MM_rs.Requery(); } // move the cursor to the selected record for (var i=0; !MM_rs.EOF && i < MM_offset; i++) { MM_rs.MoveNext(); } } %> <% // *** Move To Record: update recordset stats // set the first and last displayed record accessbarrier_first = MM_offset + 1; accessbarrier_last = MM_offset + MM_size; if (MM_rsCount != -1) { accessbarrier_first = Math.min(accessbarrier_first, MM_rsCount); accessbarrier_last = Math.min(accessbarrier_last, MM_rsCount); } // set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount != -1 && MM_offset + MM_size >= MM_rsCount); %> <% // *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters // create the list of parameters which should not be maintained var MM_removeList = "&index="; if (MM_paramName != "") MM_removeList += "&" + MM_paramName.toLowerCase() + "="; var MM_keepURL="",MM_keepForm="",MM_keepBoth="",MM_keepNone=""; // add the URL parameters to the MM_keepURL string for (var items=new Enumerator(Request.QueryString); !items.atEnd(); items.moveNext()) { var nextItem = "&" + items.item().toLowerCase() + "="; if (MM_removeList.indexOf(nextItem) == -1) { MM_keepURL += "&" + items.item() + "=" + Server.URLencode(Request.QueryString(items.item())); } } // add the Form variables to the MM_keepForm string for (var items=new Enumerator(Request.Form); !items.atEnd(); items.moveNext()) { var nextItem = "&" + items.item().toLowerCase() + "="; if (MM_removeList.indexOf(nextItem) == -1) { MM_keepForm += "&" + items.item() + "=" + Server.URLencode(Request.Form(items.item())); } } // create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL + MM_keepForm; if (MM_keepBoth.length > 0) MM_keepBoth = MM_keepBoth.substring(1); if (MM_keepURL.length > 0) MM_keepURL = MM_keepURL.substring(1); if (MM_keepForm.length > 0) MM_keepForm = MM_keepForm.substring(1); %> <% // *** Move To Record: set the strings for the first, last, next, and previous links var MM_moveFirst="",MM_moveLast="",MM_moveNext="",MM_movePrev=""; var MM_keepMove = MM_keepBoth; // keep both Form and URL parameters for moves var MM_moveParam = "index"; // if the page has a repeated region, remove 'offset' from the maintained parameters if (MM_size > 1) { MM_moveParam = "offset"; if (MM_keepMove.length > 0) { params = MM_keepMove.split("&"); MM_keepMove = ""; for (var i=0; i < params.length; i++) { var nextItem = params[i].substring(0,params[i].indexOf("=")); if (nextItem.toLowerCase() != MM_moveParam) { MM_keepMove += "&" + params[i]; } } if (MM_keepMove.length > 0) MM_keepMove = MM_keepMove.substring(1); } } // set the strings for the move to links if (MM_keepMove.length > 0) MM_keepMove += "&"; var urlStr = Request.ServerVariables("URL") + "?" + MM_keepMove + MM_moveParam + "="; MM_moveFirst = urlStr + "0"; MM_moveLast = urlStr + "-1"; MM_moveNext = urlStr + (MM_offset + MM_size); MM_movePrev = urlStr + Math.max(MM_offset - MM_size,0); %> AAPI Health Literature Database





Home
What's New and Happening
About this site
About AAPCHO
Members
Products and Publications
Programs
API Links
Email Lists


AAPCHO Logo



AAPI Health Literature Database - Youth

Hepatitis B vaccination coverage among Asian and Pacific Islander children--United States, 1998. MMWR Morb Mortal Wkly Rep 2000;49(27):616-9.

Health Alert: Healthier Lifestyle Can Prevent or Delay Diabetes in Children: Centers for Disease Control and Prevention; 2002.

Abright AR, Chung H. Depression in Asian American children. West J Med 2002;176(4):244-8.

Appleyard J, Messeri P, Haviland ML. Smoking among Asian American and Hawaiian/Pacific Islander youth: data from the 2000 National Youth Tobacco Survey. Asian Am Pac Isl J Health 2001;9(1):5-14.

Baruffi G, Hardy CJ, Waslien CI, Uyehara SJ, Krupitsky D. Ethnic differences in the prevalence of overweight among young children in Hawaii. J Am Diet Assoc 2004;104(11):1701-7.

Bhattacharya G. The school adjustment of South Asian immigrant children in the United States. Adolescence 2000;35(137):77-85.

Capps LL. Fright illness in Hmong children. Pediatr Nurs 1999;25(4):378-83.

Chen QS, Jr., Ngo-Metzger Q, Tran LQ, Sugrue-McElearney E, Levy ER, Williams G, et al. Hepatitis B vaccination among Vietnamese-American children in a Boston community clinic. Asian Am Pac Isl J Health 2001;9(2):179-87.

Cho Y, Hummer RA. Disability status differentials across fifteen Asian and Pacific Islander groups and the effect of nativity and duration of residence in the U.S. Soc Biol 2001;48(3-4):171-95.

Choi H, Stafford L, Meininger JC, Roberts RE, Smith DP. Psychometric properties of the DSM scale for depression (DSD) with Korean-American youths. Issues Ment Health Nurs 2002;23(8):735-56.

Choi KH, Han CS, Hudes ES, Kegeles S. Unprotected sex and associated risk factors among young Asian and Pacific Islander men who have sex with men. AIDS Educ Prev 2002;14(6):472-81.

Choi KH, McFarland W, Neilands TB, Nguyen S, Louie B, Secura GM, et al. An opportunity for prevention: prevalence, incidence, and sexual risk for HIV among young Asian and Pacific Islander men who have sex with men, San Francisco. Sex Transm Dis 2004;31(8):475-80.

Deuson RR, Brodovicz KG, Barker L, Zhou F, Euler GL. Economic analysis of a child vaccination project among Asian Americans in Philadelphia, Pa. Arch Pediatr Adolesc Med 2001;155(8):909-14.

Ducore JM, Parikh-Patel A, Gold EB. Cancer occurrence in Southeast Asian children in California. J Pediatr Hematol Oncol 2004;26(10):613-8.

Euler GL. The epidemiology of hepatitis B vaccination catch-up among AAPI children in the United States. Asian Am Pac Isl J Health 2001;9(2):154-61.

Gambol P, Gambol M. Vulnerability in the Asian or Pacific Islander immigrant child. J Sch Nurs 2002;18(6):314-21.

Gee CB. Assessment of anxiety and depression in Asian American youth. J Clin Child Adolesc Psychol 2004;33(2):269-71.

Gessner BD, Sutanto A, Linehan M, Djelantik IG, Fletcher T, Gerudug IK, et al. Incidences of vaccine-preventable Haemophilus influenzae type b pneumonia and meningitis in Indonesian children: hamlet-randomised vaccine-probe trial. Lancet 2005;365(9453):43-52.

Greenberg EL, Perz M, Sockalingam S, Hayes M. Multicultural maternal and child health outreach: Washington State strategies to assure access for Asian and Pacific Islander women and children. J Public Health Manag Pract 1996;2(3):66-71.

Harachi TW, Catalano RF, Kim S, Choi Y. Etiology and prevention of substance use among Asian American youth. Prev Sci 2001;2(1):57-65.

Hernandez MT, Klausner JD, McFarland W, Wong E, Bolan G, Molitor F, et al. Hepatitis B prevalence in young women living in low-income areas: the population-based San Francisco Bay area's Young Women's Survey. Sex Transm Dis 2000;27(9):539-44.

Hodges M, Jones C, Davies H. Cross-cultural differences in maternal evaluation of children's body shapes. International Journal of Eating Disorders [H.W. Wilson - SSA] 1996;19:257.

Hon KL, Leung TF, Wong Y, Ma KC, Fok TF. Skin diseases in Chinese children at a pediatric dermatology center. Pediatr Dermatol 2004;21(2):109-12.

Jensen JK, Gustafson D, Boushey CJ, Auld G, Bock MA, Bruhn CM, et al. Development of a food frequency questionnaire to estimate calcium intake of Asian, Hispanic, and white youth. J Am Diet Assoc 2004;104(5):762-9.

Kershaw JM. AAPI youth tobacco use: a comparative analysis of current cigarette use data from the Florida, Texas, and National Youth Tobacco Surveys. Asian Am Pac Isl J Health 2001;9(1):25-33.

Kibirige MS. Diabetes in immigrant Asian children. Indian Pediatr 1999;36(5):445-8.

Kim SS. The experiences of young Korean immigrants: a grounded theory of negotiating social, cultural, and generational boundaries. Issues Ment Health Nurs 2004;25(5):517-37.

Kim YO. Access to hepatitis B vaccination among Korean American children in immigrant families. J Health Care Poor Underserved 2004;15(2):170-82.

Knight J, Chapman S. "Asian yuppies...are always looking for something new and different": creating a tobacco culture among young Asians. Tob Control 2004;13 Suppl 2:ii22-9.

Kohli HS. A comparison of smoking and drinking among Asian and white schoolchildren in Glasgow. Public Health 1989;103(6):433-9.

Lee T, Brugge D, Francis C, Fisher O. Asthma Prevalence Among Inner-City Asian American Schoolchildren. Public Health Reports 2003;118:215-220.

Lin HC, Su CY, Huang SC. Kikuchi's disease in Asian children. Pediatrics 2005;115(1):e92-6.

Liu K, Levinson S. Comparisons of blood pressure between Asian-American children and children from other racial groups in Chicago. Public Health Reports [H.W. Wilson - SSA] 1996;111:65.

Ma GX, Shive SE, Tan Y, Thomas P, Man VL. Development of a culturally appropriate smoking cessation program for Chinese-American youth. J Adolesc Health 2004;35(3):206-16.

Mokuau N. Culturally based interventions for substance use and child abuse among native Hawaiians. Public Health Rep 2002;117 Suppl 1:S82-7.

Nagasaki K, Kikuchi T, Hiura M, Uchiyama M. Obese Japanese children have low bone mineral density after puberty. J Bone Miner Metab 2004;22(4):376-81.

Nolan L, Harvey J, Jones K, Vaquerano L, Zuvekas A. The Impact of the State Children's Health Insurance Program (SCHIP) on Community Health Centers. Washington, DC: The George Washington University, Center for Health Services Research and Policy, and School of Public Health and Health Services; 2002 June 2002.

Novotny R. Dairy, calcium and body composition of multiethnic youth. Asia Pac J Clin Nutr 2004;13(Suppl):S36.

Ong AD, Phinney JS. Personal goals and depression among Vietnamese American and European American young adults: a mediational analysis. J Soc Psychol 2002;142(1):97-108.

Perez C. Guam: the role of people living with HIV / AIDS in the prevention of HIV / AIDS and STD in the Pacific. Pac AIDS Alert Bull 2000(19):10.

Pulido MJ, Alvarado EA, Berger W, Nelson A, Todoroff C. Vaccinating Asian Pacific Islander children against hepatitis B: ethnic-specific influences and barriers. Asian Am Pac Isl J Health 2001;9(2):211-20.

Rojewski JW, Shapiro MS, Shapiro M. Parental assessment of behavior in Chinese adoptees during early childhood. Child Psychiatry Hum Dev 2000;31(1):79-96.

Rosenbaum S, Proser M, Shin P, Wilensky SE, Sonosky C. Child Development Programs in Community Health Centers: The Commonwealth Fund; 2002 January 2002.

Spigner C, Gran-O'Donnell S. Establishing baseline information on cigarette smoking behavior from ethnic-specific groups of Asian American and Pacific Islander youth in Seattle, Washington, 1996-1998. Asian Am Pac Isl J Health 2001;9(1):34-9.

Sworts VD, Riccitelli CN. Health education lessons learned: the H.A.P.I. Kids Program. J Sch Health 1997;67(7):283-5.

Tsai CH, Chen HL, Ni YH, Hsu HY, Jeng YM, Chang CJ, et al. Characteristics and trends in incidence of inflammatory bowel disease in Taiwanese children. J Formos Med Assoc 2004;103(9):685-91.

Tsai JL, Mortensen H, Wong Y, Hess D. What does "being American" mean? A comparison of Asian American and European American young adults. Cultur Divers Ethnic Minor Psychol 2002;8(3):257-73.

Tsai JL, Ying YW, Lee PA. Cultural predictors of self-esteem: a study of Chinese American female and male young adults. Cultur Divers Ethnic Minor Psychol 2001;7(3):284-97.

Unger JB, Cruz TB, Ribisl KM. English language use as a risk factor for smoking initiation among Hispanic and Asian American adolescents: evidence for mediation by tobacco-related beliefs and social norms. Health Psychology [H.W. Wilson - SSA] 2000;19(5):403.

Vryheid RE, Yu ES, Mehta KM, McGhee J. The declining prevalence of hepatitis B virus infection among Asian and Pacific Islander children. Asian Am Pac Isl J Health 2001;9(2):162-78.

Weinick RM, Krauss NA. Racial/ethnic differences in children's access to care. American Journal of Public Health 2000;90(11):1771.

Weitz TA, Harper C, Mohllajee AP. Teen Pregnancy Among Asians and Pacific Islanders in California: Final Report. San Francisco, CA: UCSF Center for Reproductive Health Research & Policy; 2001 2001.

Wiecha JM, Hebert JR, Lim M. Diet measurement in Vietnamese youth: Concurrent reliability of a self-administered food frequency questionnaire. Journal of Community Health 1994;19(3):181.

Yeo S, Fetters M, Maeda Y. Japanese couples' childbirth experiences in Michigan: implications for care. Birth 2000;27(3):191-8.

Yeung A. Depression among young Asian Americans. Asian Am Pac Isl J Health 1999;7(2):192-195.

Yu SM, Huang ZJ, Singh GK. Health status and health services utilization among US Chinese, Asian Indian, Filipino, and other Asian/Pacific Islander Children. Pediatrics 2004;113(1 Pt 1):101-7.


Return to AAPI Health Literature Database Home

Chop Image
Comments? Please e-mail mailto:webmaster@aapcho.org
site version 2.0 | 17 FEB 104
© AAPCHO 1999