123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>설문조사</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <ansinfo>
- <userid/>
- <surveyid/>
- <histstat/>
- <a0/>
- <a1/>
- <a2/>
- <a3/>
- <a4/>
- <a5/>
- <a5_edt1/>
- <a6/>
- <a6_edt1/>
- <a7/>
- <a8/>
- <a8_edt1/>
- <a9/>
- <b1/>
- <b2/>
- <b3/>
- <b4/>
- <b5/>
- <b6/>
- <b7/>
- <b8/>
- <b9/>
- <b10/>
- <b11/>
- <b12/>
- <b13/>
- <b14/>
- <b15/>
- <b16/>
- <b17/>
- <b18/>
- <b19/>
- <b20/>
- <b21/>
- <b22/>
- <b23/>
- <b24/>
- <b25/>
- <b26/>
- <b27/>
- <c1/>
- <c2/>
- <c3/>
- <c4/>
- <c5/>
- <c6/>
- <c7/>
- <c8/>
- <c9/>
- <c10/>
- <c11/>
- <c12/>
- <c13/>
- <c14/>
- <c15/>
- <c16/>
- <c17/>
- <c18/>
- <c19/>
- <c20/>
- <c21/>
- <c22/>
- <c23/>
- <c24/>
- <d1_edt1/>
- </ansinfo>
- <resultinfo>
- <resultyn/>
- </resultinfo>
- <surveyform>
- <forminfo>
- <issuecd>1</issuecd>
- <issuenm>기관</issuenm>
- <answercolnm>a0</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>10</issuecd>
- <issuenm>1.1.</issuenm>
- <answercolnm>a1</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>20</issuecd>
- <issuenm>1.2.</issuenm>
- <answercolnm>a2</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>30</issuecd>
- <issuenm>1.3.</issuenm>
- <answercolnm>a3</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>40</issuecd>
- <issuenm>1.4.</issuenm>
- <answercolnm>a4</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>50</issuecd>
- <issuenm>1.5.</issuenm>
- <answercolnm>a5</answercolnm>
- <answertext1colnm>a5_edt1</answertext1colnm>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>60</issuecd>
- <issuenm>1.6.</issuenm>
- <answercolnm>a6</answercolnm>
- <answertext1colnm>a6_edt1</answertext1colnm>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>70</issuecd>
- <issuenm>1.7.</issuenm>
- <answercolnm>a7</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>80</issuecd>
- <issuenm>1.8.</issuenm>
- <answercolnm>a8</answercolnm>
- <answertext1colnm>a8_edt1</answertext1colnm>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>90</issuecd>
- <issuenm>1.9.</issuenm>
- <answercolnm>a9</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>100</issuecd>
- <issuenm>2.1.</issuenm>
- <answercolnm>b1</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>110</issuecd>
- <issuenm>2.2.</issuenm>
- <answercolnm>b2</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>120</issuecd>
- <issuenm>2.3.</issuenm>
- <answercolnm>b3</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>130</issuecd>
- <issuenm>2.4.</issuenm>
- <answercolnm>b4</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>140</issuecd>
- <issuenm>2.5.</issuenm>
- <answercolnm>b5</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>150</issuecd>
- <issuenm>2.6.</issuenm>
- <answercolnm>b6</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>160</issuecd>
- <issuenm>2.7.</issuenm>
- <answercolnm>b7</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>170</issuecd>
- <issuenm>2.8.</issuenm>
- <answercolnm>b8</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>180</issuecd>
- <issuenm>2.9.</issuenm>
- <answercolnm>b9</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>190</issuecd>
- <issuenm>2.10.</issuenm>
- <answercolnm>b10</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>200</issuecd>
- <issuenm>2.11.</issuenm>
- <answercolnm>b11</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>210</issuecd>
- <issuenm>2.12.</issuenm>
- <answercolnm>b12</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>220</issuecd>
- <issuenm>2.13.</issuenm>
- <answercolnm>b13</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>230</issuecd>
- <issuenm>2.14.</issuenm>
- <answercolnm>b14</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>240</issuecd>
- <issuenm>2.15.</issuenm>
- <answercolnm>b15</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>250</issuecd>
- <issuenm>2.16.</issuenm>
- <answercolnm>b16</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>260</issuecd>
- <issuenm>2.17.</issuenm>
- <answercolnm>b17</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>270</issuecd>
- <issuenm>2.18.</issuenm>
- <answercolnm>b18</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>280</issuecd>
- <issuenm>2.19.</issuenm>
- <answercolnm>b19</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>290</issuecd>
- <issuenm>2.20.</issuenm>
- <answercolnm>b20</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>300</issuecd>
- <issuenm>2.21.</issuenm>
- <answercolnm>b21</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>310</issuecd>
- <issuenm>2.22.</issuenm>
- <answercolnm>b22</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>320</issuecd>
- <issuenm>2.23.</issuenm>
- <answercolnm>b23</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>330</issuecd>
- <issuenm>2.24.</issuenm>
- <answercolnm>b24</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>340</issuecd>
- <issuenm>2.25.</issuenm>
- <answercolnm>b25</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>350</issuecd>
- <issuenm>2.26.</issuenm>
- <answercolnm>b26</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>360</issuecd>
- <issuenm>2.27.</issuenm>
- <answercolnm>b27</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>370</issuecd>
- <issuenm>3.1.</issuenm>
- <answercolnm>c1</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>380</issuecd>
- <issuenm>3.2.</issuenm>
- <answercolnm>c2</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>390</issuecd>
- <issuenm>3.3.</issuenm>
- <answercolnm>c3</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>400</issuecd>
- <issuenm>3.4.</issuenm>
- <answercolnm>c4</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>410</issuecd>
- <issuenm>3.5.</issuenm>
- <answercolnm>c5</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>420</issuecd>
- <issuenm>3.6.</issuenm>
- <answercolnm>c6</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>430</issuecd>
- <issuenm>3.7.</issuenm>
- <answercolnm>c7</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>440</issuecd>
- <issuenm>3.8.</issuenm>
- <answercolnm>c8</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>450</issuecd>
- <issuenm>3.9.</issuenm>
- <answercolnm>c9</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>460</issuecd>
- <issuenm>3.10.</issuenm>
- <answercolnm>c10</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>470</issuecd>
- <issuenm>3.11.</issuenm>
- <answercolnm>c11</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>480</issuecd>
- <issuenm>3.12.</issuenm>
- <answercolnm>c12</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>490</issuecd>
- <issuenm>3.13.</issuenm>
- <answercolnm>c13</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>500</issuecd>
- <issuenm>3.14.</issuenm>
- <answercolnm>c14</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>510</issuecd>
- <issuenm>3.15.</issuenm>
- <answercolnm>c15</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>520</issuecd>
- <issuenm>3.16.</issuenm>
- <answercolnm>c16</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>530</issuecd>
- <issuenm>3.17.</issuenm>
- <answercolnm>c17</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>540</issuecd>
- <issuenm>3.18.</issuenm>
- <answercolnm>c18</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>550</issuecd>
- <issuenm>3.19.</issuenm>
- <answercolnm>c19</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>560</issuecd>
- <issuenm>3.20.</issuenm>
- <answercolnm>c20</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>570</issuecd>
- <issuenm>3.21.</issuenm>
- <answercolnm>c21</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>580</issuecd>
- <issuenm>3.22.</issuenm>
- <answercolnm>c22</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>590</issuecd>
- <issuenm>3.23.</issuenm>
- <answercolnm>c23</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>600</issuecd>
- <issuenm>3.24.</issuenm>
- <answercolnm>c24</answercolnm>
- <answertext1colnm/>
- <answertext2colnm/>
- <answertext3colnm/>
- </forminfo>
- <forminfo>
- <issuecd>610</issuecd>
- <issuenm>4.</issuenm>
- <answercolnm/>
- <answertext1colnm>d1_edt1</answertext1colnm>
- <answertext2colnm/>
- <answertext3colnm/>
- <noessential>Y</noessential>
- </forminfo>
- </surveyform>
- </main>
- <send>
- <surveyinfo>
- <userid/>
- <surveyid>stress</surveyid>
- <anonymousyn>Y</anonymousyn>
- </surveyinfo>
- <ansinfo>
- <userid/>
- <surveyid/>
- <anonymousyn/>
- <histstat/>
- <issue/>
- <answer/>
- <answertext1/>
- <answertext2/>
- <answertext3/>
- </ansinfo>
- </send>
- <init/>
- <hidden>
- <ansinfo/>
- </hidden>
- <temp/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fInit();
-
- model.refresh();
- ]]>
- </script>
- <submission id="TRRXS00102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/surveyinfo" resultref="/root/hidden/ansinfo"/>
- <submission id="TXRXS00101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/ansinfo" resultref="/root/main/resultinfo"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- </xhtml:head>
- <script type="javascript">
- <![CDATA[
- function fInit()
- {
- model.setValue("/root/send/surveyinfo/userid", getUserId());
-
- submit("TRRXS00102", false);
-
- var count = getNodesetCount("/root/hidden/ansinfo");
-
- if(count > 0) {
- for(var i = 1; i <= count; i++) {
- var issuecd = model.getValue("/root/hidden/ansinfo[" + i + "]/issuecd");
- var answer = model.getValue("/root/hidden/ansinfo[" + i + "]/answer");
- var answertext1 = model.getValue("/root/hidden/ansinfo[" + i + "]/answertext1");
- var answertext2 = model.getValue("/root/hidden/ansinfo[" + i + "]/answertext2");
- var answertext3 = model.getValue("/root/hidden/ansinfo[" + i + "]/answertext3");
-
- var answercolnm = model.getValue("/root/main/surveyform/forminfo[issuecd = '" + issuecd + "']/answercolnm");
- var answertext1colnm = model.getValue("/root/main/surveyform/forminfo[issuecd = '" + issuecd + "']/answertext1colnm");
- var answertext2colnm = model.getValue("/root/main/surveyform/forminfo[issuecd = '" + issuecd + "']/answertext2colnm");
- var answertext3colnm = model.getValue("/root/main/surveyform/forminfo[issuecd = '" + issuecd + "']/answertext3colnm");
-
- if(answercolnm != "") model.setValue("/root/main/ansinfo/" + answercolnm, answer);
- if(answertext1colnm != "") model.setValue("/root/main/ansinfo/" + answertext1colnm, answertext1);
- if(answertext2colnm != "") model.setValue("/root/main/ansinfo/" + answertext2colnm, answertext2);
- if(answertext3colnm != "") model.setValue("/root/main/ansinfo/" + answertext3colnm, answertext3);
- }
- }
-
- var instcd = model.getValue("/root/main/ansinfo/a0");
- if(instcd == "") {
- model.setValue("/root/main/ansinfo/a0", getUserInfo("dutplceinstcd"));
- }
-
- model.refresh();
-
- radio5.dispatch("xforms-value-changed");
- radio25.dispatch("xforms-value-changed");
- radio36.dispatch("xforms-value-changed");
-
- model.setFocus("radio2");
- }
-
- function fSave(histstat)
- {
- // 임시 저장일 때는 체크 안함
- if(histstat == "Y") {
- // 항목별 값 입력 확인
- var emptyAnswer = "";
- var noessential = "";
-
- var count = getNodesetCount("/root/main/surveyform/forminfo");
- for(var i = 1; i <= count; i++) {
- // 필수여부 아닌 것 체크
- noessential = model.getValue("/root/main/surveyform/forminfo[" + i + "]/noessential");
- if(noessential == "Y") continue;
-
- // 숫자값 입력 확인
- var answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answercolnm");
- if(answercolnm == "") {
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext1colnm");
-
- if(answercolnm == "") {
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext2colnm");
-
- if(answercolnm == "")
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext3colnm");
- }
- }
-
- var value = model.getValue("/root/main/ansinfo/" + answercolnm);
- if(value == "") {
- var issuenm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuenm");
- emptyAnswer = emptyAnswer + issuenm + " ";
- } else if(i == 6 && value == "7"){
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext1colnm");
- if(answercolnm == "") {
- var issuenm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuenm");
- emptyAnswer = emptyAnswer + issuenm + "기타 ";
- }
- } else if(i == 7 && value == "7") {
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext1colnm");
- if(answercolnm == "") {
- var issuenm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuenm");
- emptyAnswer = emptyAnswer + issuenm + "기타 ";
- }
- } else if(i == 9 && value == "5") {
- answercolnm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext1colnm");
- if(answercolnm == "") {
- var issuenm = model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuenm");
- emptyAnswer = emptyAnswer + issuenm + "기타 ";
- }
- }
- }
-
- if(emptyAnswer != "") {
- messageBox("선택하지 않은 항목이 있으니 확인하여 주십시오\n" +
- "반드시 모두 입력하시고 답변완료를 눌러주시기 바랍니다\n" +
- "- 미답항목 : " + emptyAnswer, "E");
- return;
- }
- }
-
- var userid = getUserId();
- var surveyid = model.getValue("/root/send/surveyinfo/surveyid");
- var anonymousyn = model.getValue("/root/send/surveyinfo/anonymousyn");
- var count = getNodesetCount("/root/main/surveyform/forminfo");
-
- for(var i = 1; i <= count; i++) {
- model.makeValue("/root/send/ansinfo[" + i + "]/userid", userid);
- model.makeValue("/root/send/ansinfo[" + i + "]/surveyid", surveyid);
- model.makeValue("/root/send/ansinfo[" + i + "]/anonymousyn", anonymousyn);
- model.makeValue("/root/send/ansinfo[" + i + "]/histstat", histstat);
- model.makeValue("/root/send/ansinfo[" + i + "]/issuecd", model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuecd"));
- model.makeValue("/root/send/ansinfo[" + i + "]/issuenm", model.getValue("/root/main/surveyform/forminfo[" + i + "]/issuenm"));
- model.makeValue("/root/send/ansinfo[" + i + "]/answer", model.getValue("/root/main/ansinfo/" + model.getValue("/root/main/surveyform/forminfo[" + i + "]/answercolnm")));
- model.makeValue("/root/send/ansinfo[" + i + "]/answertext1", model.getValue("/root/main/ansinfo/" + model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext1colnm")));
- model.makeValue("/root/send/ansinfo[" + i + "]/answertext2", model.getValue("/root/main/ansinfo/" + model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext2colnm")));
- model.makeValue("/root/send/ansinfo[" + i + "]/answertext3", model.getValue("/root/main/ansinfo/" + model.getValue("/root/main/surveyform/forminfo[" + i + "]/answertext3colnm")));
- }
-
- if(submit("TXRXS00101",false)) {
- if(histstat == "Y") {
- if(model.getValue("/root/main/resultinfo/resultyn") == "Y")
- window.close();
- } else {
- messageBox("임시 저장하였습니다", "I");
- }
- }
- }
-
- ]]>
- </script>
- <xhtml:body pagewidth="1200" pageheight="880" guideline="1,1099;" style="font-size:11pt; ">
- <group id="group1" style="left:0px; top:0px; width:1180px; height:825px; ">
- <table id="table1" cellspacing="-1" style="left:110px; top:80px; width:989px; height:305px; ">
- <tr>
- <td style="width:987px; height:302px; font-size:14pt; line-spacing:8; padding:20; border-right-style:solid; border-bottom-style:solid; ">
- <![CDATA[안녕하십니까?
- 이 설문조사는 직원 여러분들의 직무스트레스 관련 요인과 감정노동 수준을 평가하기 위한 조사로 안전보건공단의 측정도구를 이용하여 작성하였습니다. 설문 문항은 총 60문항으로 약 7 ~ 8분이 소요될 것으로 예상이 됩니다.
- 이 자료는 무기명으로 처리되며, 개인의 정도를 평가하기 위함이 아니라 직종별, 근무형태별 등 집단 간 평가 자료로 이용됨을 알려드리오니 직원여러분의 꾸밈없는 답변 부탁드립니다.
- 경북대학교병원 근로복지과 직원건강관리실 보건관리자 ( ☎ 원내 6116 )
- 칠곡경북대학교병원 의료질관리실 보건관리자 ( ☎ 원내 2421 )]]>
- </td>
- </tr>
- </table>
- <caption id="caption33" style="left:50px; top:6px; width:1105px; height:49px; font-family:HY헤드라인M; font-size:24pt; font-weight:bold; color:#2d629c; text-align:center; ">전 직원 직무스트레스 관련 설문조사</caption>
- <line id="line1" style="x1:110px; y1:55px; x2:1100px; y2:55px; border-width:2px; "/>
- <caption id="caption31" style="left:110px; top:2795px; width:1000px; height:105px; font-size:16pt; font-weight:bold; text-align:center; vertical-align:middle; line-spacing:5; ">* 본 설문조사에 귀중한 시간을 할애하여 주셔서 감사합니다</caption>
- <line id="line3" style="x1:110px; y1:58px; x2:1100px; y2:58px; border-width:4px; "/>
- <caption id="caption11" style="left:105px; top:402px; width:1005px; height:40px; font-size:13pt; font-weight:bold; ">1. 일반적 사항</caption>
- <table id="table2" cellspacing="-1" style="left:110px; top:440px; width:989px; height:560px; ">
- <tr>
- <td style="width:259px; height:40px; font-size:11pt; vertical-align:middle; padding-left:4; ">1. 연령</td>
- <td style="width:727px; height:40px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio2" ref="/root/main/ansinfo/a1" appearance="full" cellspacing="30" cols="4" overflow="visible" style="left:8px; top:11px; width:527px; height:20px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 20세 ~ 29세</label>
- <value>1</value>
- </item>
- <item>
- <label>② 30세 ~ 39세</label>
- <value>2</value>
- </item>
- <item>
- <label>③ 40세 ~ 49세</label>
- <value>3</value>
- </item>
- <item>
- <label>④ 50세 이상</label>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:40px; font-size:11pt; vertical-align:middle; padding-left:4; ">2. 성별</td>
- <td style="width:727px; height:40px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio11" ref="/root/main/ansinfo/a2" appearance="full" cellspacing="30" cols="2" rows="1" overflow="visible" style="left:8px; top:11px; width:180px; height:20px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 남</label>
- <value>1</value>
- </item>
- <item>
- <label>② 여</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:40px; font-size:11pt; vertical-align:middle; padding-left:4; ">3. 결혼여부</td>
- <td style="width:727px; height:40px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio4" ref="/root/main/ansinfo/a3" appearance="full" cellspacing="30" cols="2" rows="1" overflow="visible" style="left:8px; top:11px; width:180px; height:20px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 기혼</label>
- <value>1</value>
- </item>
- <item>
- <label>② 미혼</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:101px; font-size:11pt; vertical-align:middle; padding-left:4; ">4. 현 직장 경력</td>
- <td style="width:727px; height:101px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio19" ref="/root/main/ansinfo/a4" appearance="full" cellspacing="30" cols="2" vcellspacing="2" overflow="visible" style="left:8px; top:9px; width:327px; height:86px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 1년 미만</label>
- <value>1</value>
- </item>
- <item>
- <label>② 1년 ~ 2년 미만</label>
- <value>2</value>
- </item>
- <item>
- <label>③ 2년 ~ 5년 미만</label>
- <value>3</value>
- </item>
- <item>
- <label>④ 5년 ~ 10년 미만</label>
- <value>4</value>
- </item>
- <item>
- <label>⑤ 10년 ~ 15년 미만</label>
- <value>5</value>
- </item>
- <item>
- <label>⑥ 15년 ~ 20년 미만</label>
- <value>6</value>
- </item>
- <item>
- <label>⑦ 20년 이상</label>
- <value>7</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:74px; font-size:11pt; vertical-align:middle; padding-left:4; ">5. 직종</td>
- <td style="width:727px; height:74px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio5" ref="/root/main/ansinfo/a5" appearance="full" cols="3" rows="2" vcellspacing="2" overflow="visible" style="left:8px; top:5px; width:692px; height:65px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 의사직</label>
- <value>1</value>
- </item>
- <item>
- <label>② 간호직</label>
- <value>2</value>
- </item>
- <item>
- <label>③ 약무직</label>
- <value>3</value>
- </item>
- <item>
- <label>④ 의료기술직</label>
- <value>4</value>
- </item>
- <item>
- <label>⑤ 행정, 전산, 의공, 시설기술, 영양, 의무기록 등</label>
- <value>5</value>
- </item>
- <item>
- <label>⑥ 간호조무, 원무직</label>
- <value>6</value>
- </item>
- <item>
- <label>⑦ 기타( )</label>
- <value>7</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(radio5.value == 7) {
- input14.disabled = false;
- model.setFocus("input14");
- } else {
- input14.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <input id="input14" ref="/root/main/ansinfo/a5_edt1" disabled="true" imemode="hangul" style="left:82px; top:49px; width:122px; height:19px; "/>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:98px; font-size:11pt; vertical-align:middle; padding-left:4; ">6. 근무부서</td>
- <td style="width:727px; height:98px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio25" ref="/root/main/ansinfo/a6" appearance="full" cellspacing="30" cols="2" vcellspacing="2" overflow="visible" style="left:8px; top:6px; width:532px; height:84px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 진료처 내 진료과</label>
- <value>1</value>
- </item>
- <item>
- <label>② 간호부</label>
- <value>2</value>
- </item>
- <item>
- <label>③ 약제부</label>
- <value>3</value>
- </item>
- <item>
- <label>④ 진료지원실(의무기록 ,영양, 건진, 심사)</label>
- <value>4</value>
- </item>
- <item>
- <label>⑤ 검사부서</label>
- <value>5</value>
- </item>
- <item>
- <label>⑥ 행정 및 관리부서</label>
- <value>6</value>
- </item>
- <item>
- <label>⑦ 기타( )</label>
- <value>7</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(radio25.value == 7) {
- input1.disabled = false;
- model.setFocus("input1");
- } else {
- input1.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <input id="input1" ref="/root/main/ansinfo/a6_edt1" disabled="true" imemode="hangul" style="left:82px; top:71px; width:122px; height:19px; "/>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:43px; font-size:11pt; vertical-align:middle; padding-left:4; ">7. 직위</td>
- <td style="width:727px; height:43px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio30" ref="/root/main/ansinfo/a7" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:8px; top:11px; width:222px; height:20px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 일반직원</label>
- <value>1</value>
- </item>
- <item>
- <label>② 부서장</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:74px; font-size:11pt; vertical-align:middle; padding-left:4; ">8. 근무형태</td>
- <td style="width:727px; height:74px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio36" ref="/root/main/ansinfo/a8" appearance="full" cellspacing="30" cols="2" vcellspacing="2" overflow="visible" style="left:8px; top:6px; width:607px; height:54px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 통상근무</label>
- <value>1</value>
- </item>
- <item>
- <label>② 2교대(DAY 또는 EVE만 근무함)</label>
- <value>2</value>
- </item>
- <item>
- <label>③ 3교대(정기적으로 야간 근무 있음)</label>
- <value>3</value>
- </item>
- <item>
- <label>④ 기타(당직, 콜근무 있음)</label>
- <value>4</value>
- </item>
- <item>
- <label>⑤ 기타( )</label>
- <value>5</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(radio36.value == 5) {
- input2.disabled = false;
- model.setFocus("input2");
- } else {
- input2.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <input id="input2" ref="/root/main/ansinfo/a8_edt1" disabled="true" imemode="hangul" style="left:82px; top:50px; width:122px; height:19px; "/>
- </td>
- </tr>
- <tr>
- <td style="width:259px; height:40px; font-size:11pt; vertical-align:middle; padding-left:4; ">9. 주 대면 고객의 유형</td>
- <td style="width:727px; height:40px; font-size:11pt; vertical-align:middle; padding-left:8; ">
- <select1 id="radio3" ref="/root/main/ansinfo/a9" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:8px; top:11px; width:417px; height:20px; font-size:11pt; border-style:none; ">
- <choices>
- <item>
- <label>① 외부고객(환자 및 외부인)</label>
- <value>1</value>
- </item>
- <item>
- <label>② 내부고객(직원)</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- </table>
- <caption id="caption2" style="left:105px; top:1022px; width:1005px; height:40px; font-size:13pt; font-weight:bold; ">2. 지난 1년 동안의 업무수행을 토대로 아래의 설문에 대한 귀하의 생각과 가장 가까운 곳에 체크하여 주시길 바랍니다.</caption>
- <table id="table4" cellspacing="-1" style="left:110px; top:1060px; width:988px; height:786px; ">
- <tr>
- <td style="width:118px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; background-color:#daeef3; ">구분</td>
- <td style="width:623px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; background-color:#daeef3; ">내용</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">전혀 그렇지 않다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">약간 그렇지 않다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">약간 그렇다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">매우 그렇다</td>
- </tr>
- <tr>
- <td rowspan="3" style="width:118px; height:75px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#fde9d9; ">
- <![CDATA[물리적
- 환 경]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">1. 근무 장소가 깨끗하고 쾌적하다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio1" ref="/root/main/ansinfo/b1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio6" ref="/root/main/ansinfo/b1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio7" ref="/root/main/ansinfo/b1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio8" ref="/root/main/ansinfo/b1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">2. 내 일은 위험하며 사고를 당할 가능성이 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio9" ref="/root/main/ansinfo/b2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio10" ref="/root/main/ansinfo/b2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio12" ref="/root/main/ansinfo/b2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio13" ref="/root/main/ansinfo/b2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">3. 내 업무는 불편한 자세로 오랫동안 일을 해야 한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio14" ref="/root/main/ansinfo/b3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio15" ref="/root/main/ansinfo/b3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio16" ref="/root/main/ansinfo/b3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio17" ref="/root/main/ansinfo/b3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="4" style="width:118px; height:100px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#daeef3; ">
- <![CDATA[직 무
- 요 구]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">4. 나는 일이 많아 항상 시간에 쫓기며 일한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio18" ref="/root/main/ansinfo/b4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio20" ref="/root/main/ansinfo/b4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio21" ref="/root/main/ansinfo/b4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio22" ref="/root/main/ansinfo/b4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">5. 업무량이 현저하게 증가하였다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio23" ref="/root/main/ansinfo/b5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio24" ref="/root/main/ansinfo/b5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio26" ref="/root/main/ansinfo/b5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio27" ref="/root/main/ansinfo/b5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">6. 업무 수행 중에 충분한 휴식(짬)이 주어진다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio28" ref="/root/main/ansinfo/b6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio29" ref="/root/main/ansinfo/b6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio31" ref="/root/main/ansinfo/b6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio32" ref="/root/main/ansinfo/b6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">7. 여러 가지일을 동시에 해야 한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio33" ref="/root/main/ansinfo/b7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio34" ref="/root/main/ansinfo/b7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio35" ref="/root/main/ansinfo/b7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio37" ref="/root/main/ansinfo/b7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="4" style="width:118px; height:100px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#e4dfec; ">
- <![CDATA[직 무
- 자 율]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">8. 내 업무는 창의력을 필요로 한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio38" ref="/root/main/ansinfo/b8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio39" ref="/root/main/ansinfo/b8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio40" ref="/root/main/ansinfo/b8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio41" ref="/root/main/ansinfo/b8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">9. 내 업무를 수행하기 위해서는 높은 수준의 기술이나 지식이 필요하다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio42" ref="/root/main/ansinfo/b9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio43" ref="/root/main/ansinfo/b9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio44" ref="/root/main/ansinfo/b9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio45" ref="/root/main/ansinfo/b9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">10. 작업시간, 업무수행과정에서 나에게 결정할 권한이 주어지며 영향력을 행사 할 수 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio46" ref="/root/main/ansinfo/b10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio47" ref="/root/main/ansinfo/b10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio48" ref="/root/main/ansinfo/b10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio49" ref="/root/main/ansinfo/b10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">11. 나의 업무량과 작업스케줄을 스스로 조절할 수 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio50" ref="/root/main/ansinfo/b11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio51" ref="/root/main/ansinfo/b11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio52" ref="/root/main/ansinfo/b11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio53" ref="/root/main/ansinfo/b11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="3" style="width:118px; height:75px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#ebf1de; ">
- <![CDATA[관 계
- 갈 등]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">12. 나의 상사는 업무를 완료하는데 도움을 준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio54" ref="/root/main/ansinfo/b12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio55" ref="/root/main/ansinfo/b12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio56" ref="/root/main/ansinfo/b12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio57" ref="/root/main/ansinfo/b12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">13. 나의 동료는 업무를 완료하는데 도움을 준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio58" ref="/root/main/ansinfo/b13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio59" ref="/root/main/ansinfo/b13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio60" ref="/root/main/ansinfo/b13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio61" ref="/root/main/ansinfo/b13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">14. 직장에서 내가 힘들 때 내가 힘들다는 것을 알아주고 이해해 주는 사람이 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio62" ref="/root/main/ansinfo/b14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio63" ref="/root/main/ansinfo/b14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio64" ref="/root/main/ansinfo/b14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio65" ref="/root/main/ansinfo/b14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="2" style="width:118px; height:67px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#f2dcdb; ">
- <![CDATA[직 무
- 불안정]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">15. 직장사정이 불안하여 미래가 불확실하다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio66" ref="/root/main/ansinfo/b15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio67" ref="/root/main/ansinfo/b15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio68" ref="/root/main/ansinfo/b15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio69" ref="/root/main/ansinfo/b15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:42px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">16. 나의 근무조건이나 상황에 바람직하지 못한 변화(예, 구조조정)가 있었거나 있을 것으로 예상된다.</td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio70" ref="/root/main/ansinfo/b16" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio71" ref="/root/main/ansinfo/b16" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio72" ref="/root/main/ansinfo/b16" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio73" ref="/root/main/ansinfo/b16" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="4" style="width:118px; height:100px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#dce6f1; ">
- <![CDATA[조 직
- 체 계]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#dce6f1; ">17. 우리 직장은 근무평가, 인사제도(승진, 부서배치 등)가 공정하고 합리적이다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio74" ref="/root/main/ansinfo/b17" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio75" ref="/root/main/ansinfo/b17" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio76" ref="/root/main/ansinfo/b17" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio77" ref="/root/main/ansinfo/b17" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#dce6f1; ">18. 업무수행에 필요한 인원, 공간, 시설, 장비, 훈련 등의 지원이 잘 이루어지고 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio78" ref="/root/main/ansinfo/b18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio79" ref="/root/main/ansinfo/b18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio80" ref="/root/main/ansinfo/b18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio81" ref="/root/main/ansinfo/b18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#dce6f1; ">19. 우리 부서와 타 부서간에는 마찰이 없고 업무협조가 잘 이루어진다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio82" ref="/root/main/ansinfo/b19" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio83" ref="/root/main/ansinfo/b19" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio84" ref="/root/main/ansinfo/b19" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio85" ref="/root/main/ansinfo/b19" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#dce6f1; ">20. 일에 대한 나의 생각을 반영할 수 있는 기회와 통로가 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio86" ref="/root/main/ansinfo/b20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio87" ref="/root/main/ansinfo/b20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; ">
- <select1 id="radio88" ref="/root/main/ansinfo/b20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#dce6f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio89" ref="/root/main/ansinfo/b20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="3" style="width:118px; height:75px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#c5d9f1; ">
- <![CDATA[보 상
- 부적절]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#c5d9f1; ">21. 나의 모든 노력과 업적을 고려할 때, 나는 직장에서 제대로 존중과 신임을 받고 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio90" ref="/root/main/ansinfo/b21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio91" ref="/root/main/ansinfo/b21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio92" ref="/root/main/ansinfo/b21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio93" ref="/root/main/ansinfo/b21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#c5d9f1; ">22. 내 사정이 앞으로 더 좋아질 것을 생각하면 힘든 줄 모르고 일하게 된다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio94" ref="/root/main/ansinfo/b22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio95" ref="/root/main/ansinfo/b22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio96" ref="/root/main/ansinfo/b22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio97" ref="/root/main/ansinfo/b22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#c5d9f1; ">23. 나의 능력을 개발하고 발휘할 수 있는 기회가 주어진다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio98" ref="/root/main/ansinfo/b23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio99" ref="/root/main/ansinfo/b23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; ">
- <select1 id="radio100" ref="/root/main/ansinfo/b23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#c5d9f1; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio101" ref="/root/main/ansinfo/b23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="4" style="width:118px; height:100px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#ddd9c4; border-bottom-width:1px; border-bottom-style:solid; ">
- <![CDATA[직 장
- 문 화]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ddd9c4; ">24. 회식자리가 불편하다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio102" ref="/root/main/ansinfo/b24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio103" ref="/root/main/ansinfo/b24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio104" ref="/root/main/ansinfo/b24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio105" ref="/root/main/ansinfo/b24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ddd9c4; ">25. 나는 기준이나 일관성이 없는 상태로 업무 지시를 받는다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio106" ref="/root/main/ansinfo/b25" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio107" ref="/root/main/ansinfo/b25" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio108" ref="/root/main/ansinfo/b25" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio109" ref="/root/main/ansinfo/b25" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ddd9c4; ">26. 직장의 분위기가 권위적이고 수직적이다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio110" ref="/root/main/ansinfo/b26" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio111" ref="/root/main/ansinfo/b26" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; ">
- <select1 id="radio112" ref="/root/main/ansinfo/b26" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio113" ref="/root/main/ansinfo/b26" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ddd9c4; border-bottom-width:1px; border-bottom-style:solid; ">27 남성, 여성이라는 성적인 차이 때문에 불이익을 받는다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-bottom-width:1px; border-bottom-style:solid; ">
- <select1 id="radio114" ref="/root/main/ansinfo/b27" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-bottom-width:1px; border-bottom-style:solid; ">
- <select1 id="radio115" ref="/root/main/ansinfo/b27" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-bottom-width:1px; border-bottom-style:solid; ">
- <select1 id="radio116" ref="/root/main/ansinfo/b27" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ddd9c4; border-right-width:1px; border-bottom-width:1px; border-right-style:solid; border-bottom-style:solid; ">
- <select1 id="radio117" ref="/root/main/ansinfo/b27" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- </table>
- <caption id="caption3" style="left:105px; top:1867px; width:1005px; height:40px; font-size:13pt; font-weight:bold; ">3. 현재의 업무수행 상황을 토대로 아래의 설문에 대한 귀하의 생각과 가장 가까운 곳에 체크하여 주시기 바랍니다.</caption>
- <table id="table3" cellspacing="-1" style="left:110px; top:1905px; width:988px; height:786px; ">
- <tr>
- <td style="width:118px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; background-color:#daeef3; ">구분</td>
- <td style="width:623px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; background-color:#daeef3; ">내용</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">전혀 그렇지 않다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">약간 그렇지 않다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; ">약간 그렇다</td>
- <td style="width:60px; height:65px; font-size:12pt; font-weight:bold; text-align:center; vertical-align:middle; word-wrap:word; line-spacing:4; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">매우 그렇다</td>
- </tr>
- <tr>
- <td rowspan="5" style="width:118px; height:125px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#fde9d9; ">
- <![CDATA[감정 조절의
- 노력
- 및
- 다양성]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">1. 고객에게 부정적인 감정을 표현하지 않으려고 의식적으로 노력한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio118" ref="/root/main/ansinfo/c1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio119" ref="/root/main/ansinfo/c1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio120" ref="/root/main/ansinfo/c1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio121" ref="/root/main/ansinfo/c1" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">2. 고객을 대할 때 회사의 요구대로 감정 표현을 할 수 밖에 없다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio122" ref="/root/main/ansinfo/c2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio123" ref="/root/main/ansinfo/c2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio124" ref="/root/main/ansinfo/c2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio125" ref="/root/main/ansinfo/c2" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">3. 업무상 고객을 대하는 과정에서 나의 솔직한 감정을 숨긴다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio126" ref="/root/main/ansinfo/c3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio127" ref="/root/main/ansinfo/c3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; ">
- <select1 id="radio128" ref="/root/main/ansinfo/c3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#fde9d9; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio129" ref="/root/main/ansinfo/c3" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">4. 일상적인 업무수행을 위해서는 감정을 조절하려는 노력이 필요하다.</td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio226" ref="/root/main/ansinfo/c4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio227" ref="/root/main/ansinfo/c4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio228" ref="/root/main/ansinfo/c4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio229" ref="/root/main/ansinfo/c4" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#fde9d9; ">5. 고객을 대할 때 느끼는 나의 감정과 내가 실제 표현하는 감정은 다르다.</td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio230" ref="/root/main/ansinfo/c5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio231" ref="/root/main/ansinfo/c5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio232" ref="/root/main/ansinfo/c5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#fde9d9; ">
- <select1 id="radio233" ref="/root/main/ansinfo/c5" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="3" style="width:118px; height:75px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#daeef3; ">
- <![CDATA[고객응대의
- 과부하 및
- 갈등]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">6. 공격적이거나 까다로운 고객을 상대해야 한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio130" ref="/root/main/ansinfo/c6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio131" ref="/root/main/ansinfo/c6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio132" ref="/root/main/ansinfo/c6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio133" ref="/root/main/ansinfo/c6" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">7. 나의 능력이나 권한 밖의 일을 요구하는 고객을 상대해야 한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio134" ref="/root/main/ansinfo/c7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio135" ref="/root/main/ansinfo/c7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio136" ref="/root/main/ansinfo/c7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio137" ref="/root/main/ansinfo/c7" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#daeef3; ">8. 고객의 부당하거나 막무가내의 요구로 업무 수행의 어려움이 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio138" ref="/root/main/ansinfo/c8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio139" ref="/root/main/ansinfo/c8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; ">
- <select1 id="radio140" ref="/root/main/ansinfo/c8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#daeef3; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio141" ref="/root/main/ansinfo/c8" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="6" style="width:118px; height:150px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#e4dfec; ">
- <![CDATA[감정부조화
- 및
- 손상]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">9. 고객을 응대할 때 자존심이 상한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio146" ref="/root/main/ansinfo/c9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio147" ref="/root/main/ansinfo/c9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio148" ref="/root/main/ansinfo/c9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio149" ref="/root/main/ansinfo/c9" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">10. 고객에게 감정을 숨기고 표현하지 못할 때 나는 감정이 상한다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio150" ref="/root/main/ansinfo/c10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio151" ref="/root/main/ansinfo/c10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio152" ref="/root/main/ansinfo/c10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio153" ref="/root/main/ansinfo/c10" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">11. 고객을 응대할 때 나의 감정이 상품처럼 느껴진다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio154" ref="/root/main/ansinfo/c11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio155" ref="/root/main/ansinfo/c11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio156" ref="/root/main/ansinfo/c11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio157" ref="/root/main/ansinfo/c11" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">12. 퇴근 후에도 고객을 응대할 때 힘들었던 감정이 남아 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio158" ref="/root/main/ansinfo/c12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio159" ref="/root/main/ansinfo/c12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; ">
- <select1 id="radio160" ref="/root/main/ansinfo/c12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#e4dfec; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio161" ref="/root/main/ansinfo/c12" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">13. 고객을 대하는 과정에서 마음의 상처를 받는다.</td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio142" ref="/root/main/ansinfo/c13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio143" ref="/root/main/ansinfo/c13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio144" ref="/root/main/ansinfo/c13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio145" ref="/root/main/ansinfo/c13" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#e4dfec; ">14. 몸이 피곤해도 고객들에게 최선을 다해야 하므로 감정적으로 힘들다.</td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio234" ref="/root/main/ansinfo/c14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio235" ref="/root/main/ansinfo/c14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio236" ref="/root/main/ansinfo/c14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; background-color:#e4dfec; ">
- <select1 id="radio237" ref="/root/main/ansinfo/c14" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="3" style="width:118px; height:92px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#ebf1de; ">
- <![CDATA[조직의 감시 및
- 모니터링]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">15. 직장이 요구하는 대로 고객에게 잘 응대하는지 감시를 당한다(CCTV 등).</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio162" ref="/root/main/ansinfo/c15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio163" ref="/root/main/ansinfo/c15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio164" ref="/root/main/ansinfo/c15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio165" ref="/root/main/ansinfo/c15" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">16. 고객의 평가가 업무성과평가나 인사고과에 영향을 준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio166" ref="/root/main/ansinfo/c16" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio167" ref="/root/main/ansinfo/c16" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio168" ref="/root/main/ansinfo/c16" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio169" ref="/root/main/ansinfo/c16" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:42px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#ebf1de; ">17. 고객 응대에 문제가 발생했을 때, 나의 잘못이 아닌데도 직장으로부터 부당한 처우를 받는다.</td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio170" ref="/root/main/ansinfo/c17" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio171" ref="/root/main/ansinfo/c17" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; ">
- <select1 id="radio172" ref="/root/main/ansinfo/c17" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#ebf1de; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio173" ref="/root/main/ansinfo/c17" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td rowspan="7" style="width:118px; height:192px; font-size:11pt; text-align:center; vertical-align:middle; line-spacing:4; background-color:#f2dcdb; border-bottom-style:solid; ">
- <![CDATA[조직의 지지 및
- 보호체계]]>
- </td>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">18. 고객 응대 과정에서 문제가 발생 시 직장에서 적절한 조치가 이루어진다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio174" ref="/root/main/ansinfo/c18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio175" ref="/root/main/ansinfo/c18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio176" ref="/root/main/ansinfo/c18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio177" ref="/root/main/ansinfo/c18" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:42px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">19. 고객 응대 과정에서 발생한 문제를 해결하고 도와주는 직장 내의 공식적인 제도와 절차가 있다.</td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio178" ref="/root/main/ansinfo/c19" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio179" ref="/root/main/ansinfo/c19" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio180" ref="/root/main/ansinfo/c19" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:42px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio181" ref="/root/main/ansinfo/c19" appearance="full" overflow="visible" style="left:23px; top:11px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">20. 직장은 고객 응대 과정에서 입은 마음의 상처를 위로받게 해준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio182" ref="/root/main/ansinfo/c20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio183" ref="/root/main/ansinfo/c20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio184" ref="/root/main/ansinfo/c20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio185" ref="/root/main/ansinfo/c20" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">21. 상사는 고객 응대 과정에서 발생한 문제를 해결하기 위해 도와준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio186" ref="/root/main/ansinfo/c21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio187" ref="/root/main/ansinfo/c21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio188" ref="/root/main/ansinfo/c21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio189" ref="/root/main/ansinfo/c21" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">22. 동료는 고객 응대 과정에서 발생한 문제를 해결하기 위해 도와준다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio190" ref="/root/main/ansinfo/c22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio191" ref="/root/main/ansinfo/c22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio192" ref="/root/main/ansinfo/c22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio193" ref="/root/main/ansinfo/c22" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; ">23. 직장 내에 고객 응대에 관한 행동지침이나 매뉴얼(설명서, 안내서)이 마련되어 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio194" ref="/root/main/ansinfo/c23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio195" ref="/root/main/ansinfo/c23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; ">
- <select1 id="radio196" ref="/root/main/ansinfo/c23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; ">
- <select1 id="radio197" ref="/root/main/ansinfo/c23" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- <tr>
- <td style="width:623px; height:25px; font-size:11pt; vertical-align:middle; padding-left:4; background-color:#f2dcdb; border-bottom-width:1px; border-bottom-style:solid; ">24. 고객의 요구를 해결해 줄 수 있는 권한이나 자율성이 나에게 주어져 있다.</td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-bottom-style:solid; ">
- <select1 id="radio198" ref="/root/main/ansinfo/c24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>4</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-bottom-style:solid; ">
- <select1 id="radio199" ref="/root/main/ansinfo/c24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>3</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-bottom-style:solid; ">
- <select1 id="radio200" ref="/root/main/ansinfo/c24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </td>
- <td style="width:60px; height:25px; font-size:11pt; vertical-align:middle; background-color:#f2dcdb; border-right-width:1px; border-right-style:solid; border-bottom-style:solid; ">
- <select1 id="radio201" ref="/root/main/ansinfo/c24" appearance="full" overflow="visible" style="left:23px; top:5px; width:31px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>1</value>
- </item>
- </choices>
- </select1>
- </td>
- </tr>
- </table>
- <caption id="caption5" style="left:105px; top:2650px; width:1005px; height:40px; font-size:13pt; font-weight:bold; ">4. 기타사항으로 직원의 직무스트레스 관리를 위하여 의견을 주시면 업무에 참고하도록 하겠습니다.</caption>
- <textarea id="textarea1" ref="/root/main/ansinfo/d1_edt1" style="left:110px; top:2685px; width:989px; height:110px; font-size:11pt; line-spacing:4; padding:4; "/>
- </group>
- <line id="line2" style="x1:110px; y1:837px; x2:1100px; y2:837px; border-width:2px; "/>
- <button id="button1" class="btn4_letter5" style="left:510px; top:848px; width:92px; height:22px; font-size:14; ">
- <caption>답변완료</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSave("Y");
-
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="button2" class="btn4_letter5" style="left:615px; top:848px; width:92px; height:22px; font-size:14; ">
- <caption>임시저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSave("N");
-
- model.refresh();
- ]]>
- </script>
- </button>
- <caption id="caption22" style="left:720px; top:849px; width:326px; height:20px; color:#0000ff; ">※ 임시저장은 다음 로그인 시 다시 설문조사 팝업이 뜹니다</caption>
- </xhtml:body>
- </xhtml:html>
|