加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 270.54 KB
一键复制 编辑 原始数据 按行查看 历史
邓振华 提交于 2020-04-24 19:30 . 1.0.0
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>品络音乐系统V1.0</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="pinluo.com_style1/music07css.css" type=text/css rel=stylesheet>
<SCRIPT src="pinluo.com_style1/Js.js"></SCRIPT>
<META content="MSHTML 6.00.6000.16587" name=GENERATOR>
<meta name="keywords" content="音乐下载,音乐试听,品络音乐程序">
<meta name="description" content="音乐下载,音乐试听,品络音乐程序">
<link href="" rel="shortcut icon">
<meta name="generator" content="程序版权:品络科技 - 网站建设和广告设计专家 | PinLuo.Com"></HEAD>
<BODY><!-- 品络音乐系统 导航开始-->
<DIV align=center></DIV><!-- 品络音乐系统 导航结束--><!-- 主要第一屏部分开始 -->
<DIV id=rows1><!-- 左边部分开始 -->
<DIV id=leftcont>
<DIV>
<OBJECT
codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0
height=180 width=200 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000><PARAM NAME="movie" VALUE="pinluo.com_style1/musiclogo.swf"><PARAM NAME="quality" VALUE="high">
<embed src="pinluo.com_style1/musiclogo.swf" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="200" height="180"></embed>
</OBJECT></DIV>
<DIV>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=200 border=0>
<TBODY>
<TR>
<TD vAlign=top background=pinluo.com_style1/music07zjqie_13.gif height=87>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=200 border=0>
<FORM name=userlogin method="post" action="user/UserChkLogin.asp" target="_parent">
<TBODY>
<TR>
<TD vAlign=top width=13><IMG height=32
src="pinluo.com_style1/music07zjqie_11.gif" width=13></TD>
<TD class=wirth12b align=right width=46>帐号:</TD>
<TD width=141><INPUT class=finput id=UserName name=UserName> </TD></TR>
<TR>
<TD width=13>&nbsp;</TD>
<TD class=wirth12b align=right height=30>密码:</TD>
<TD height=30><INPUT class=finput id=password type=password
name=password></TD></TR>
<TR>
<TD colSpan=3 height=30>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle width="21%" bgColor=#a9e148 height=29>
<DIV align=center><A href="Reg.asp"
target=_blank><IMG height=20 src="pinluo.com_style1/but1_17.gif"
width=42 border=0></A></DIV></TD>
<TD align=middle width="23%" bgColor=#a9e148><INPUT type=image
height=20 width=42 src="pinluo.com_style1/but_17.gif" align=middle
target="('Reg.asp','_blank','')"> </TD>
<TD align=middle width="35%" bgColor=#a9e148>
<DIV align=center><A
href="javascript:open_window('PL_upload.asp','_blank','width=378,height=393 scrollbars=no')"><IMG
height=20 src="pinluo.com_style1/but_19.gif" width=65
border=0></A></DIV></TD></TR></TBODY></TABLE></TD></TR></FORM></TBODY></TABLE>
</TD></TR>
<TR>
<TD height=1><IMG height=1 src="pinluo.com_style1/music07zjqie_21.gif"
width=200></TD></TR>
<TR>
<TD align=middle bgColor=#baeb51 height=5></TD></TR>
<TR>
<TD align=middle bgColor=#baeb51 height=32>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="96%" border=0>
<TBODY>
<TR>
<TD class=black12 align=left
height=22>品络音乐系统V1.0于2007年国庆全新改版,增加人气排名;增加网友上传功能,网友通过注册成为会员,就可拥有上传功能,可以将你喜爱的歌曲与网友共享。这次改版全心致力于提供更多更好听的歌曲并与网友共建网上乐园!</TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD><IMG height=13 src="pinluo.com_style1/music07zjqie_40.gif" width=200></TD></TR>
<TR>
<TD height=5></TD></TR></TBODY></TABLE></DIV></DIV><!-- 左边部分结束 --><!-- 右边主要内容开始 -->
<DIV id=headnav>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=790 align=left border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=40 height=25><IMG height=25
src="pinluo.com_style1/music07zj11_03.gif" width=11></TD>
<TD class=black12 align=left width=557>仙乐飘飘,品络音乐系统V1.0让您一饱耳福……</TD>
<TD align=middle width=193><A class=black12
onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://127.0.0.1/');"
href="#">设为首页</A>
<SPAN class=black12>&nbsp;|&nbsp;</SPAN><A class=black12
href="javascript:window.external.AddFavorite('http://127.0.0.1/','品络音乐系统V1.0')">加入收藏</A>
</TD></TR>
<TR>
<TD vAlign=top align=middle
background=pinluo.com_style1/music07zjqie_04.gif colSpan=3 height=73>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="95%" border=0>
<TBODY>
<TR>
<TD class=gnavt14line align=middle height=32>
<A class=gnavt14line
href="http://127.0.0.1/" target=_self>首页</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=1"
target=_self>华人男</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=2"
target=_self>华人女</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=3"
target=_self>华人组合</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=4"
target=_self>日韩男</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=5"
target=_self>日韩女</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=6"
target=_self>日韩组合</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=7"
target=_self>欧美歌手</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=8"
target=_self>影视音乐</A>
| <A
class=gnavt14line
href="PL_ShowSinger.asp?SClassid=9"
target=_self>DJ舞曲</A>
</TD></TR>
<TR>
<TD class=wnavt12line align=middle height=46>
<MARQUEE id=scrollarea onmouseover=this.stop(); onmouseout=this.start(); scrollAmount=2 scrollDelay=90 direction=left width=60% height=30>最新公告:<A class=wnavt12line
href="http://www.pinluo.com/"
target=_blank title="品络音乐系统V1商业版开始出售">品络音乐系统V1商业版开始出售</A> | <A class=wnavt12line
href="http://www.pinluo.com/" target=_blank title="购买商业版送安装技术服务">购买商业版送安装技术服务</A> | <A
class=wnavt12line
href="http://www.pinluo.com/"
target=_blank title="新版V1强大功能">新版V1强大功能</A> | <A class=wnavt12line
href="http://www.pinluo.com/"
target=_blank title="程序模板漂亮,价格优惠!是您建站的选择!">程序模板漂亮,价格优惠!是您建站的选择!</A></MARQUEE>
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV id=newdisc>
<STYLE type=text/css>BODY {
MARGIN: 0px
}
</STYLE>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=780 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=12 rowSpan=2><IMG height=18
src="pinluo.com_style1/music07zjqie_06.gif" width=12></TD>
<TD vAlign=top align=left>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=41><IMG height=302
src="pinluo.com_style1/music07homeqie_03.gif" width=46></TD>
<TD class=tbline1 bgColor=#eefdcc>
<table class="tableBorder" height=160 cellSpacing=5 cellPadding=0 width="100%"
border=0><TBODY>
<!--新专辑列表开始-->
<TR>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:不会分离&nbsp;&nbsp;光良(Kong Leung)&nbsp;&nbsp;2007年11月09日 "
href="PL_ShowSpecial.asp?Specialid=9111"
target=_self><IMG class=picline height=96 alt="最新专辑:不会分离&nbsp;&nbsp;光良(Kong Leung)&nbsp;&nbsp;2007年11月09日" src="http://www.9yy.com/img//6/66dcc261433681e8db1e96e495c34410549eb4d2.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:不会分离&nbsp;&nbsp;光良(Kong Leung)&nbsp;&nbsp;2007年11月09日"
href="PL_ShowSpecial.asp?Specialid=9111"
target=_self>不会分离</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="光良(Kong Leung)" href="PL_Singer.asp?NClassid=63">光良(Kong L…</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:Rene&nbsp;&nbsp;刘若英(Liu, Jo Ying Rene)&nbsp;&nbsp;2008年02月22日 "
href="PL_ShowSpecial.asp?Specialid=9110"
target=_self><IMG class=picline height=96 alt="最新专辑:Rene&nbsp;&nbsp;刘若英(Liu, Jo Ying Rene)&nbsp;&nbsp;2008年02月22日" src="http://www.9yy.com/img//b/baf5759504fe8beb26da33843c2d3023e946c2ce.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:Rene&nbsp;&nbsp;刘若英(Liu, Jo Ying Rene)&nbsp;&nbsp;2008年02月22日"
href="PL_ShowSpecial.asp?Specialid=9110"
target=_self>Rene</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="刘若英(Liu, Jo Ying Rene)" href="PL_Singer.asp?NClassid=521">刘若英(Liu, …</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:原来我一直都不孤单&nbsp;&nbsp;陈楚生&nbsp;&nbsp;2007年11月08日 "
href="PL_ShowSpecial.asp?Specialid=9109"
target=_self><IMG class=picline height=96 alt="最新专辑:原来我一直都不孤单&nbsp;&nbsp;陈楚生&nbsp;&nbsp;2007年11月08日" src="http://www.9yy.com/img//d/dd4ee1fe3a5aa88322d107eeae5adb8e7ee7417b.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:原来我一直都不孤单&nbsp;&nbsp;陈楚生&nbsp;&nbsp;2007年11月08日"
href="PL_ShowSpecial.asp?Specialid=9109"
target=_self>原来我一直都不孤单</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="陈楚生" href="PL_Singer.asp?NClassid=3765">陈楚生</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:倩影&nbsp;&nbsp;张倩&nbsp;&nbsp;2007年07月31日 "
href="PL_ShowSpecial.asp?Specialid=9108"
target=_self><IMG class=picline height=96 alt="最新专辑:倩影&nbsp;&nbsp;张倩&nbsp;&nbsp;2007年07月31日" src="http://www.9yy.com/img//3/34cc3290d29874c7f71dcd21a61547111a2c775b.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:倩影&nbsp;&nbsp;张倩&nbsp;&nbsp;2007年07月31日"
href="PL_ShowSpecial.asp?Specialid=9108"
target=_self>倩影</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="张倩" href="PL_Singer.asp?NClassid=3764">张倩</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:新歌首听会&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月29日 "
href="PL_ShowSpecial.asp?Specialid=9107"
target=_self><IMG class=picline height=96 alt="最新专辑:新歌首听会&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月29日" src="http://www.9yy.com/img//a/a45a2993e113a7f4e0ece5006a7e14f9a15c7a4d.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:新歌首听会&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月29日"
href="PL_ShowSpecial.asp?Specialid=9107"
target=_self>新歌首听会</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="华人群星1" href="PL_Singer.asp?NClassid=2785">华人群星1</A></TD></TR></TBODY></TABLE></TD>
</TR>
<TR>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:春·夏·秋·冬&nbsp;&nbsp;张敬轩&nbsp;&nbsp;2006年03月23日 "
href="PL_ShowSpecial.asp?Specialid=9106"
target=_self><IMG class=picline height=96 alt="最新专辑:春·夏·秋·冬&nbsp;&nbsp;张敬轩&nbsp;&nbsp;2006年03月23日" src="http://www.9yy.com/img//3/3e2e250038ec4389214c74060ce4f3ebe2227d11.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:春·夏·秋·冬&nbsp;&nbsp;张敬轩&nbsp;&nbsp;2006年03月23日"
href="PL_ShowSpecial.asp?Specialid=9106"
target=_self>春·夏·秋·冬</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="张敬轩" href="PL_Singer.asp?NClassid=326">张敬轩</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:最爱笑的人&nbsp;&nbsp;谭咏麟(Tam, Wing Lun Alan)&nbsp;&nbsp;2007年08月07日 "
href="PL_ShowSpecial.asp?Specialid=9105"
target=_self><IMG class=picline height=96 alt="最新专辑:最爱笑的人&nbsp;&nbsp;谭咏麟(Tam, Wing Lun Alan)&nbsp;&nbsp;2007年08月07日" src="http://www.9yy.com/img//a/acdb69ddfa521689e50c879155aa1a39f11bee37.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:最爱笑的人&nbsp;&nbsp;谭咏麟(Tam, Wing Lun Alan)&nbsp;&nbsp;2007年08月07日"
href="PL_ShowSpecial.asp?Specialid=9105"
target=_self>最爱笑的人</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="谭咏麟(Tam, Wing Lun Alan)" href="PL_Singer.asp?NClassid=236">谭咏麟(Tam, …</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:STAR&nbsp;&nbsp;张惠妹(Chang, Hui Mei A-Mei)&nbsp;&nbsp;2007年08月03日 "
href="PL_ShowSpecial.asp?Specialid=9104"
target=_self><IMG class=picline height=96 alt="最新专辑:STAR&nbsp;&nbsp;张惠妹(Chang, Hui Mei A-Mei)&nbsp;&nbsp;2007年08月03日" src="http://9yy.com/img//0/041ceb7d09cf24bfc6b7dba154f0f33ca4bcf19d.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:STAR&nbsp;&nbsp;张惠妹(Chang, Hui Mei A-Mei)&nbsp;&nbsp;2007年08月03日"
href="PL_ShowSpecial.asp?Specialid=9104"
target=_self>STAR</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="张惠妹(Chang, Hui Mei A-Mei)" href="PL_Singer.asp?NClassid=739">张惠妹(Chang…</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:男人歌20强&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月03日 "
href="PL_ShowSpecial.asp?Specialid=9103"
target=_self><IMG class=picline height=96 alt="最新专辑:男人歌20强&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月03日" src="http://9yy.com/img//c/cd204156093c419abaa5c59b297f7f7eee8cbb8c.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:男人歌20强&nbsp;&nbsp;华人群星1&nbsp;&nbsp;2007年08月03日"
href="PL_ShowSpecial.asp?Specialid=9103"
target=_self>男人歌20强</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="华人群星1" href="PL_Singer.asp?NClassid=2785">华人群星1</A></TD></TR></TBODY></TABLE></TD>
<TD align=middle width="20%" bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle><A title="最新专辑:爱的绝唱&nbsp;&nbsp;华人群星7&nbsp;&nbsp;2007年07月25日 "
href="PL_ShowSpecial.asp?Specialid=9102"
target=_self><IMG class=picline height=96 alt="最新专辑:爱的绝唱&nbsp;&nbsp;华人群星7&nbsp;&nbsp;2007年07月25日" src="http://9yy.com/img//7/74914b97f25ca352067279a512f1c83b9ace5561.jpg" width=96
border=0></A></TD></TR>
<TR>
<TD class=g13tit align=middle><A class=g13tit
title="最新专辑:爱的绝唱&nbsp;&nbsp;华人群星7&nbsp;&nbsp;2007年07月25日"
href="PL_ShowSpecial.asp?Specialid=9102"
target=_self>爱的绝唱</A></TD></TR>
<TR>
<TD class=gray13tit align=middle><A class=gray12t title="华人群星7" href="PL_Singer.asp?NClassid=3760">华人群星7</A></TD></TR></TBODY></TABLE></TD>
</TR>
<!--新专辑列表结束-->
<TR></TR></TBODY></TABLE></TD>
<TD vAlign=top align=right width=37><IMG
height=302 src="pinluo.com_style1/music07homeqie_05.gif" width=37
useMap=#Map border=0></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD align=middle>
<SCRIPT type=text/javascript>
<!--
function CheckForm()
{
if (document.form1.kw.value=="")
{
alert("请填写搜索内容!");
document.form1.kw.focus(); return false;
}
return true;
}
-->
</SCRIPT>
<table class="tableBorder" width="95%" border=0 align="center" cellPadding=0 cellSpacing=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=59
background=pinluo.com_style1/music07zjqie_17.gif><IMG height=46
src="pinluo.com_style1/music07zjqie_16.gif" width=59></TD>
<TD width="682" vAlign=top background=pinluo.com_style1/music07zjqie_17.gif>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="99%" border=0>
<TBODY>
<TR>
<TD vAlign=top align=left>
<FORM id=form1 name=form1 onSubmit="return CheckForm();"
action="PL_search.asp" method="get" target="_blank">
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="99%" border=0>
<TBODY>
<TR>
<TD width="9%"><INPUT id=id type=radio CHECKED value=0
name=t>
<SPAN class=g13tit>歌曲 </SPAN></TD>
<TD width="9%" height=21><INPUT id=id type=radio value=1
name=t>
<SPAN class=g13tit>歌手</SPAN> </LABEL></TD>
<TD width="9%"><INPUT id=id type=radio value=2 name=t>
<SPAN class=g13tit>专辑</SPAN></TD>
<TD width="9%"><INPUT id=id type=radio value=3 name=t>
<SPAN class=g13tit>歌词</SPAN> </TD>
<TD align=middle width="19%" height=21><INPUT
class=finput id=kw name=kw></TD>
<TD align=middle width="8%" height=21><A
href="javascript:submit();"><INPUT type=image height=21
width=42 src="pinluo.com_style1/btu_33.gif"></A></TD>
<TD class=gray12t width="37%" height=21>热门搜索: <A
class=gray12u
href="PL_search.asp?t=1&amp;kw=刘若英"
target=_blank>刘若英</A>. <A class=gray12u
href="PL_search.asp?t=0&amp;kw=爱"
target=_blank>爱</A>. <A class=gray12u
href="PL_search.asp?t=1&amp;kw=张学友"
target=_blank>张学友</A>. <A class=gray12u
href="PL_search.asp?t=0&amp;kw=神话"
target=_blank>神话</A>. </TD>
</TR></TBODY></TABLE></FORM></TD></TR>
<TR>
<TD class=sg12b vAlign=bottom align=middle>
按歌手字母查询: <B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=0-9">0-9</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=A">A</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=B">B</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=C">C</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=D">D</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=E">E</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=F">F</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=G">G</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=H">H</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=J">J</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=K">K</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=L">L</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=M">M</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=N">N</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=O">O</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=P">P</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=Q">Q</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=R">R</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=S">S</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=T">T</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=V">V</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=W">W</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=X">X</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=Y">Y</A>
</B><B><A class=eng12b
href="PL_ShowSinger.asp?SClassid=&SClass_abcd=Z">Z</A>
</B>
</TD></TR></TBODY></TABLE></TD>
<TD vAlign=top align=right width=12
background=pinluo.com_style1/music07zjqie_17.gif><img height=46
src="pinluo.com_style1/music07zjqie_19.gif"
width=11></TD>
</TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV><!-- 右边主要内容结束 --></DIV><!-- 第一屏部分结束 --><!-- 第二部分开始 -->
<DIV id=rows2><!-- 第二部分新歌排行开始 -->
<DIV id=ph1>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song1 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD align=left
width="82%"><a href="PL_Speciallist.asp" target="_self" class=wtit14line>新歌排行</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<!--读取新歌列表-->
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109795" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="惊叹号"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="惊叹号"
href="javascript:open_window('ShowMusic.asp?id=109795','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">惊叹号</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109795','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109795"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109795','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109794" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="住在遥远的星球"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="住在遥远的星球"
href="javascript:open_window('ShowMusic.asp?id=109794','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">住在遥远的星球</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109794','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109794"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109794','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109793" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I Am Who I Am (我就是我)"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I Am Who I Am (我就是我)"
href="javascript:open_window('ShowMusic.asp?id=109793','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I Am Who I</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109793','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109793"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109793','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109792" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="爱可以点亮整个世界"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="爱可以点亮整个世界"
href="javascript:open_window('ShowMusic.asp?id=109792','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">爱可以点亮整个世界</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109792','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109792"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109792','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109791" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="女孩别哭"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="女孩别哭"
href="javascript:open_window('ShowMusic.asp?id=109791','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">女孩别哭</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109791','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109791"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109791','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109790" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I Miss You"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I Miss You"
href="javascript:open_window('ShowMusic.asp?id=109790','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I Miss You</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109790','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109790"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109790','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109789" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="不会分离"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="不会分离"
href="javascript:open_window('ShowMusic.asp?id=109789','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">不会分离</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109789','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109789"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109789','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109788" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="烟火"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="烟火"
href="javascript:open_window('ShowMusic.asp?id=109788','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">烟火</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109788','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109788"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109788','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109787" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="风雨同路"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="风雨同路"
href="javascript:open_window('ShowMusic.asp?id=109787','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">风雨同路</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109787','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109787"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109787','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109786" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="双子星"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="双子星"
href="javascript:open_window('ShowMusic.asp?id=109786','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">双子星</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109786','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109786"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109786','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song1)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song1)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第二部分新歌排行结束 --><!-- 第二部分歌曲排行开始 -->
<DIV id=ph2>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song2 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_Speciallist.asp" target="_self" class=wtit14line>单曲排行</a></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="91119" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="吉祥三宝"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="吉祥三宝"
href="javascript:open_window('ShowMusic.asp?id=91119','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">吉祥三宝</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="布仁巴雅尔"
href="PL_Singer.asp?NClassid=3145">(布仁巴..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=91119','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=91119"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=91119','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="107216" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="美丽的神话 - 成龙/金喜善"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="美丽的神话 - 成龙/金喜善"
href="javascript:open_window('ShowMusic.asp?id=107216','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">美丽的神话 - 成龙</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="神话"
href="PL_Singer.asp?NClassid=2360">(神话..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=107216','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=107216"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=107216','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109099" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="夜曲"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="夜曲"
href="javascript:open_window('ShowMusic.asp?id=109099','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">夜曲</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="周杰伦"
href="PL_Singer.asp?NClassid=347">(周杰伦..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109099','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109099"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109099','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109110" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="一路向北"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="一路向北"
href="javascript:open_window('ShowMusic.asp?id=109110','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">一路向北</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="周杰伦"
href="PL_Singer.asp?NClassid=347">(周杰伦..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109110','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109110"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109110','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="102" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="梁山伯与祝英台"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="梁山伯与祝英台"
href="javascript:open_window('ShowMusic.asp?id=102','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">梁山伯与祝英台</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="鲍比达"
href="PL_Singer.asp?NClassid=7">(鲍比达..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=102','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=102"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=102','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109358" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="守在风起的地方"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="守在风起的地方"
href="javascript:open_window('ShowMusic.asp?id=109358','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">守在风起的地方</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="洪佩谊"
href="PL_Singer.asp?NClassid=3745">(洪佩谊..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109358','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109358"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109358','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109101" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="发如雪"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="发如雪"
href="javascript:open_window('ShowMusic.asp?id=109101','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">发如雪</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="周杰伦"
href="PL_Singer.asp?NClassid=347">(周杰伦..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109101','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109101"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109101','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109346" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="相约2006"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="相约2006"
href="javascript:open_window('ShowMusic.asp?id=109346','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">相约2006</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="赵默(Zhao Mo)"
href="PL_Singer.asp?NClassid=691">(赵默(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109346','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109346"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109346','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109442" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="突然的自我"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="突然的自我"
href="javascript:open_window('ShowMusic.asp?id=109442','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">突然的自我</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘芳"
href="PL_Singer.asp?NClassid=3105">(刘芳..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109442','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109442"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109442','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="84464" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="爱我还是他"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="爱我还是他"
href="javascript:open_window('ShowMusic.asp?id=84464','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">爱我还是他</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="陶喆(Tao, Che David)"
href="PL_Singer.asp?NClassid=241">(陶喆(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=84464','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=84464"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=84464','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song2)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song2)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第二部分歌曲排行结束 --><!-- 第二部分歌手排行开始 -->
<DIV id=ph3>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<TBODY>
<TR>
<TD background=pinluo.com_style1/music07homeqie_10.gif height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<FORM name=song11 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_Speciallist.asp" target="_self" class=wtit14line>推荐歌曲</a></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle bgColor=#ffffff height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="102" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="梁山伯与祝英台"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="梁山伯与祝英台"
href="javascript:open_window('ShowMusic.asp?id=102','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">梁山伯与祝英台</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="鲍比达"
href="PL_Singer.asp?NClassid=7">(鲍比达..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=102','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=102"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=102','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="8440" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="爱上未来的你"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="爱上未来的你"
href="javascript:open_window('ShowMusic.asp?id=8440','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">爱上未来的你</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="潘玮柏(Pan Weibo)"
href="PL_Singer.asp?NClassid=216">(潘玮柏..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=8440','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=8440"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=8440','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="75979" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="快乐崇拜"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="快乐崇拜"
href="javascript:open_window('ShowMusic.asp?id=75979','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">快乐崇拜</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="潘玮柏(Pan Weibo)"
href="PL_Singer.asp?NClassid=216">(潘玮柏..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=75979','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=75979"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=75979','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="80797" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="你到底爱谁"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="你到底爱谁"
href="javascript:open_window('ShowMusic.asp?id=80797','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">你到底爱谁</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘嘉亮"
href="PL_Singer.asp?NClassid=2914">(刘嘉亮..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=80797','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=80797"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=80797','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="93217" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="简简单单"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="简简单单"
href="javascript:open_window('ShowMusic.asp?id=93217','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">简简单单</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="林俊杰(Lin Jun Jie)"
href="PL_Singer.asp?NClassid=170">(林俊杰..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=93217','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=93217"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=93217','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="100607" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="后来的我们 (新歌)"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="后来的我们 (新歌)"
href="javascript:open_window('ShowMusic.asp?id=100607','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">后来的我们 (新歌)</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="品冠(Pin Kuang)"
href="PL_Singer.asp?NClassid=212">(品冠(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=100607','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=100607"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=100607','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="100608" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="又一年又三年 (新歌)"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="又一年又三年 (新歌)"
href="javascript:open_window('ShowMusic.asp?id=100608','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">又一年又三年 (新歌</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="品冠(Pin Kuang)"
href="PL_Singer.asp?NClassid=212">(品冠(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=100608','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=100608"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=100608','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="100717" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="星空下"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="星空下"
href="javascript:open_window('ShowMusic.asp?id=100717','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">星空下</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="周传雄(小刚)"
href="PL_Singer.asp?NClassid=375">(周传雄..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=100717','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=100717"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=100717','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="100718" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="寂寞沙洲冷"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="寂寞沙洲冷"
href="javascript:open_window('ShowMusic.asp?id=100718','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">寂寞沙洲冷</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="周传雄(小刚)"
href="PL_Singer.asp?NClassid=375">(周传雄..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=100718','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=100718"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=100718','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="101326" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="哪一站"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="哪一站"
href="javascript:open_window('ShowMusic.asp?id=101326','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">哪一站</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="羽泉(Yu Quan)"
href="PL_Singer.asp?NClassid=927">(羽泉(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=101326','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=101326"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=101326','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD class=sg12b align=middle background=pinluo.com_style1/music07homeqie_25.gif
height=28><A href="javascript:CheckAll(song11)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song11)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></TBODY></FORM></TABLE></DIV><!-- 第二部分歌手排行结束 --></DIV><!-- 第二部分结束 --><!-- 第三部分开始 -->
<DIV id=rows3><!-- 第三部分老歌排行开始 -->
<DIV id=ph4>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song3 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=1" target="_self" class=wtit14line>华人男歌手最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109795" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="惊叹号"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="惊叹号"
href="javascript:open_window('ShowMusic.asp?id=109795','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">惊叹号</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109795','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109795"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109795','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109794" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="住在遥远的星球"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="住在遥远的星球"
href="javascript:open_window('ShowMusic.asp?id=109794','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">住在遥远的星球</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109794','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109794"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109794','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109793" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I Am Who I Am (我就是我)"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I Am Who I Am (我就是我)"
href="javascript:open_window('ShowMusic.asp?id=109793','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I Am Who I</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109793','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109793"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109793','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109792" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="爱可以点亮整个世界"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="爱可以点亮整个世界"
href="javascript:open_window('ShowMusic.asp?id=109792','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">爱可以点亮整个世界</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109792','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109792"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109792','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109791" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="女孩别哭"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="女孩别哭"
href="javascript:open_window('ShowMusic.asp?id=109791','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">女孩别哭</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109791','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109791"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109791','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109790" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I Miss You"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I Miss You"
href="javascript:open_window('ShowMusic.asp?id=109790','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I Miss You</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109790','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109790"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109790','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109789" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="不会分离"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="不会分离"
href="javascript:open_window('ShowMusic.asp?id=109789','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">不会分离</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109789','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109789"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109789','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109788" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="烟火"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="烟火"
href="javascript:open_window('ShowMusic.asp?id=109788','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">烟火</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109788','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109788"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109788','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109787" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="风雨同路"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="风雨同路"
href="javascript:open_window('ShowMusic.asp?id=109787','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">风雨同路</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109787','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109787"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109787','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109786" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="双子星"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="双子星"
href="javascript:open_window('ShowMusic.asp?id=109786','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">双子星</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="光良(Kong Leung)"
href="PL_Singer.asp?NClassid=63">(光良(..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109786','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109786"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109786','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song3)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song3)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分老歌排行结束 --><!-- 第三部分电影排行开始 -->
<DIV id=ph5>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song4 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=2" target="_self" class=wtit14line>华人女歌手最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109785" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="黄昏以后 天亮以前"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="黄昏以后 天亮以前"
href="javascript:open_window('ShowMusic.asp?id=109785','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">黄昏以后 天亮以前</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109785','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109785"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109785','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109784" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="为爱痴狂"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="为爱痴狂"
href="javascript:open_window('ShowMusic.asp?id=109784','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">为爱痴狂</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109784','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109784"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109784','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109783" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="24楼"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="24楼"
href="javascript:open_window('ShowMusic.asp?id=109783','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">24楼</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109783','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109783"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109783','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109782" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="听说"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="听说"
href="javascript:open_window('ShowMusic.asp?id=109782','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">听说</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109782','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109782"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109782','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109781" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="听 是谁在唱歌 - 刘若英/黄颜玲"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="听 是谁在唱歌 - 刘若英/黄颜玲"
href="javascript:open_window('ShowMusic.asp?id=109781','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">听 是谁在唱歌 - </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109781','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109781"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109781','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109780" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="一次幸福的机会"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="一次幸福的机会"
href="javascript:open_window('ShowMusic.asp?id=109780','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">一次幸福的机会</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109780','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109780"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109780','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109779" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="知道不知道"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="知道不知道"
href="javascript:open_window('ShowMusic.asp?id=109779','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">知道不知道</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109779','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109779"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109779','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109778" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="蝴蝶"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="蝴蝶"
href="javascript:open_window('ShowMusic.asp?id=109778','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">蝴蝶</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109778','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109778"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109778','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109777" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="原来你也在这里"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="原来你也在这里"
href="javascript:open_window('ShowMusic.asp?id=109777','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">原来你也在这里</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109777','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109777"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109777','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109776" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="一辈子的孤单"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="一辈子的孤单"
href="javascript:open_window('ShowMusic.asp?id=109776','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">一辈子的孤单</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="刘若英(Liu, Jo Ying Rene)"
href="PL_Singer.asp?NClassid=521">(刘若英..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109776','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109776"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109776','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song4)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song4)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分电影排行结束 --><!-- 第三部分轻音乐排行开始 -->
<DIV id=ph6>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song5 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=3" target="_self" class=wtit14line>华人组合 最新歌曲</a></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109357" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Mama"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Mama"
href="javascript:open_window('ShowMusic.asp?id=109357','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Mama</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109357','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109357"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109357','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109356" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="My Corner Of Thre Sky"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="My Corner Of Thre Sky"
href="javascript:open_window('ShowMusic.asp?id=109356','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">My Corner </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109356','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109356"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109356','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109355" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Oh,我的心"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Oh,我的心"
href="javascript:open_window('ShowMusic.asp?id=109355','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Oh,我的心</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109355','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109355"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109355','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109354" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Starry Love"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Starry Love"
href="javascript:open_window('ShowMusic.asp?id=109354','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Starry Lov</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109354','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109354"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109354','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109353" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Forget About Cinderella"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Forget About Cinderella"
href="javascript:open_window('ShowMusic.asp?id=109353','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Forget Abo</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109353','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109353"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109353','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109352" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Happy Day"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Happy Day"
href="javascript:open_window('ShowMusic.asp?id=109352','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Happy Day</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109352','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109352"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109352','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109351" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Just To Be"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Just To Be"
href="javascript:open_window('ShowMusic.asp?id=109351','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Just To Be</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109351','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109351"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109351','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109350" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="完美的一秒钟"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="完美的一秒钟"
href="javascript:open_window('ShowMusic.asp?id=109350','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">完美的一秒钟</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109350','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109350"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109350','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109349" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Tia Bo (听呒)"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Tia Bo (听呒)"
href="javascript:open_window('ShowMusic.asp?id=109349','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Tia Bo (听呒</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109349','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109349"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109349','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109348" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="秋天"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="秋天"
href="javascript:open_window('ShowMusic.asp?id=109348','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">秋天</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Lily C"
href="PL_Singer.asp?NClassid=3744">(Lil..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109348','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109348"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109348','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song5)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song5)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分轻音乐结束 --></DIV><!-- 第三部分结束 -->
<!-- 第六部分老歌排行开始 -->
<DIV id=rows3>
<DIV id=ph4>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song12 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=4" target="_self" class=wtit14line>日韩男歌手最新歌曲</a></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108635" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Forever-Instrumental-"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Forever-Instrumental-"
href="javascript:open_window('ShowMusic.asp?id=108635','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Forever-In</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="SE7EN"
href="PL_Singer.asp?NClassid=991">(SE7..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108635','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108635"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108635','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108634" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="スタートライン-Instrumental-"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="スタートライン-Instrumental-"
href="javascript:open_window('ShowMusic.asp?id=108634','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">スタートライン-In</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="SE7EN"
href="PL_Singer.asp?NClassid=991">(SE7..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108634','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108634"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108634','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108633" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Forever"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Forever"
href="javascript:open_window('ShowMusic.asp?id=108633','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Forever</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="SE7EN"
href="PL_Singer.asp?NClassid=991">(SE7..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108633','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108633"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108633','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108632" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="スタートライン"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="スタートライン"
href="javascript:open_window('ShowMusic.asp?id=108632','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">スタートライン</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="SE7EN"
href="PL_Singer.asp?NClassid=991">(SE7..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108632','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108632"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108632','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108243" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="ありがとう"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="ありがとう"
href="javascript:open_window('ShowMusic.asp?id=108243','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">ありがとう</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108243','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108243"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108243','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108242" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="唄い人"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="唄い人"
href="javascript:open_window('ShowMusic.asp?id=108242','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">唄い人</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108242','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108242"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108242','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108241" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="それっ!"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="それっ!"
href="javascript:open_window('ShowMusic.asp?id=108241','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">それっ!</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108241','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108241"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108241','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108240" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="さよなら愛しい人よ…"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="さよなら愛しい人よ…"
href="javascript:open_window('ShowMusic.asp?id=108240','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">さよなら愛しい人よ…</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108240','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108240"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108240','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108239" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="意味の無いI LOVE YOU"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="意味の無いI LOVE YOU"
href="javascript:open_window('ShowMusic.asp?id=108239','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">意味の無いI LOV</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108239','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108239"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108239','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108238" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="例えば…ボクが。"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="例えば…ボクが。"
href="javascript:open_window('ShowMusic.asp?id=108238','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">例えば…ボクが。</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="清木場俊介"
href="PL_Singer.asp?NClassid=3205">(清木場..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108238','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108238"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108238','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song12)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song12)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分老歌排行结束 --><!-- 第三部分电影排行开始 -->
<DIV id=ph5>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song13 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=5" target="_self" class=wtit14line>日韩女歌手最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108944" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="気持ちいいネ!(カラオケ)"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="気持ちいいネ!(カラオケ)"
href="javascript:open_window('ShowMusic.asp?id=108944','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">気持ちいいネ!(カラ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Mai(&#47560;&#51060;)"
href="PL_Singer.asp?NClassid=2749">(Mai..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108944','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108944"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108944','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108943" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="きりんのはなし(カラオケ)"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="きりんのはなし(カラオケ)"
href="javascript:open_window('ShowMusic.asp?id=108943','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">きりんのはなし(カラ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Mai(&#47560;&#51060;)"
href="PL_Singer.asp?NClassid=2749">(Mai..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108943','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108943"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108943','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108942" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="気持ちいいネ!"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="気持ちいいネ!"
href="javascript:open_window('ShowMusic.asp?id=108942','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">気持ちいいネ!</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Mai(&#47560;&#51060;)"
href="PL_Singer.asp?NClassid=2749">(Mai..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108942','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108942"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108942','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108941" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="きりんのはなし"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="きりんのはなし"
href="javascript:open_window('ShowMusic.asp?id=108941','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">きりんのはなし</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Mai(&#47560;&#51060;)"
href="PL_Singer.asp?NClassid=2749">(Mai..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108941','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108941"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108941','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108809" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="遠く離れても"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="遠く離れても"
href="javascript:open_window('ShowMusic.asp?id=108809','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">遠く離れても</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108809','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108809"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108809','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108808" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="サンチアゴ デ クーバ"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="サンチアゴ デ クーバ"
href="javascript:open_window('ShowMusic.asp?id=108808','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">サンチアゴ デ クー</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108808','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108808"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108808','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108807" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="南国の小径"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="南国の小径"
href="javascript:open_window('ShowMusic.asp?id=108807','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">南国の小径</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108807','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108807"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108807','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108806" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="アレリのつぼみ"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="アレリのつぼみ"
href="javascript:open_window('ShowMusic.asp?id=108806','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">アレリのつぼみ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108806','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108806"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108806','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108805" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="ラ エンガニャドーラ"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="ラ エンガニャドーラ"
href="javascript:open_window('ShowMusic.asp?id=108805','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">ラ エンガニャドーラ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108805','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108805"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108805','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108804" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="シボネー"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="シボネー"
href="javascript:open_window('ShowMusic.asp?id=108804','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">シボネー</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="小野リサ(Ono Lisa)"
href="PL_Singer.asp?NClassid=2713">(小野リ..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108804','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108804"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108804','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song13)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song13)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分电影排行结束 --><!-- 第三部分轻音乐排行开始 -->
<DIV id=ph6>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song14 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=6" target="_self" class=wtit14line>日韩组合 最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108114" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="クレナイの季節(Instrumental)"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="クレナイの季節(Instrumental)"
href="javascript:open_window('ShowMusic.asp?id=108114','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">クレナイの季節(In</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="美勇伝"
href="PL_Singer.asp?NClassid=3703">(美勇伝..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108114','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108114"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108114','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108113" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="内心キャーキャーだわ!"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="内心キャーキャーだわ!"
href="javascript:open_window('ShowMusic.asp?id=108113','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">内心キャーキャーだわ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="美勇伝"
href="PL_Singer.asp?NClassid=3703">(美勇伝..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108113','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108113"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108113','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="108112" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="クレナイの季節"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="クレナイの季節"
href="javascript:open_window('ShowMusic.asp?id=108112','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">クレナイの季節</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="美勇伝"
href="PL_Singer.asp?NClassid=3703">(美勇伝..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=108112','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=108112"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=108112','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106996" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="見上げてごらん夜の星を"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="見上げてごらん夜の星を"
href="javascript:open_window('ShowMusic.asp?id=106996','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">見上げてごらん夜の星</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106996','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106996"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106996','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106995" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="ごはんができたよ"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="ごはんができたよ"
href="javascript:open_window('ShowMusic.asp?id=106995','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">ごはんができたよ</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106995','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106995"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106995','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106994" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="ファイト!"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="ファイト!"
href="javascript:open_window('ShowMusic.asp?id=106994','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">ファイト!</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106994','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106994"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106994','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106993" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="ヨイトマケの唄"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="ヨイトマケの唄"
href="javascript:open_window('ShowMusic.asp?id=106993','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">ヨイトマケの唄</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106993','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106993"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106993','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106992" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="言葉にできない"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="言葉にできない"
href="javascript:open_window('ShowMusic.asp?id=106992','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">言葉にできない</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106992','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106992"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106992','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106991" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Time After Time"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Time After Time"
href="javascript:open_window('ShowMusic.asp?id=106991','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Time After</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106991','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106991"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106991','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="106990" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="島育ち~人の歩く道~"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="島育ち~人の歩く道~"
href="javascript:open_window('ShowMusic.asp?id=106990','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">島育ち~人の歩く道~</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="槇原敬之(Makihara Noriyuki)"
href="PL_Singer.asp?NClassid=2757">(槇原敬..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=106990','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=106990"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=106990','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song14)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song14)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分轻音乐结束 --></DIV><!-- 第六部分结束 -->
<!-- 第七部分老歌排行开始 -->
<DIV id=rows3>
<DIV id=ph4>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song15 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=7" target="_self" class=wtit14line>欧美歌手 最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109427" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="This Side of Me (B Side)"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="This Side of Me (B Side)"
href="javascript:open_window('ShowMusic.asp?id=109427','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">This Side </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109427','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109427"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109427','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109426" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Fire Inside the Man (B Side)"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Fire Inside the Man (B Side)"
href="javascript:open_window('ShowMusic.asp?id=109426','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Fire Insid</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109426','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109426"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109426','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109425" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Love Can Move You (B Side)"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Love Can Move You (B Side)"
href="javascript:open_window('ShowMusic.asp?id=109425','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Love Can M</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109425','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109425"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109425','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109424" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I'll Bet He Was Cool (B Side)"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I'll Bet He Was Cool (B Side)"
href="javascript:open_window('ShowMusic.asp?id=109424','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I'll Bet H</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109424','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109424"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109424','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109423" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I Don't Care (B Side)"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I Don't Care (B Side)"
href="javascript:open_window('ShowMusic.asp?id=109423','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I Don't Ca</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109423','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109423"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109423','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109422" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="California - By Darren Hayes"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="California - By Darren Hayes"
href="javascript:open_window('ShowMusic.asp?id=109422','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">California</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109422','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109422"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109422','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109421" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="So Beautiful - by Darren Hayes"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="So Beautiful - by Darren Hayes"
href="javascript:open_window('ShowMusic.asp?id=109421','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">So Beautif</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109421','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109421"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109421','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109420" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Affirmation"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Affirmation"
href="javascript:open_window('ShowMusic.asp?id=109420','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Affirmatio</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109420','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109420"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109420','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109419" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="The Animal Song"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="The Animal Song"
href="javascript:open_window('ShowMusic.asp?id=109419','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">The Animal</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109419','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109419"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109419','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109418" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Truly Madly Deeply"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Truly Madly Deeply"
href="javascript:open_window('ShowMusic.asp?id=109418','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Truly Madl</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="Savage Garden(野人花园)"
href="PL_Singer.asp?NClassid=1894">(Sav..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109418','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109418"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109418','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song15)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song15)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分老歌排行结束 --><!-- 第三部分电影排行开始 -->
<DIV id=ph5>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song16 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=8" target="_self" class=wtit14line>影视音乐 最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109751" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="郑希怡 - 超模"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="郑希怡 - 超模"
href="javascript:open_window('ShowMusic.asp?id=109751','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">郑希怡 - 超模</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109751','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109751"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109751','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109750" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="张继聪 - 白鸟"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="张继聪 - 白鸟"
href="javascript:open_window('ShowMusic.asp?id=109750','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">张继聪 - 白鸟</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109750','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109750"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109750','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109749" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="因果兄弟 - 这辈子我们还能在一起吗"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="因果兄弟 - 这辈子我们还能在一起吗"
href="javascript:open_window('ShowMusic.asp?id=109749','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">因果兄弟 - 这辈子</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109749','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109749"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109749','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109748" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="米儿丝 - 想听你说"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="米儿丝 - 想听你说"
href="javascript:open_window('ShowMusic.asp?id=109748','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">米儿丝 - 想听你说</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109748','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109748"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109748','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109747" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="曹颖 - 嘟嘟娃娃"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="曹颖 - 嘟嘟娃娃"
href="javascript:open_window('ShowMusic.asp?id=109747','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">曹颖 - 嘟嘟娃娃</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109747','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109747"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109747','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109746" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="许颂 - 在我心中"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="许颂 - 在我心中"
href="javascript:open_window('ShowMusic.asp?id=109746','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">许颂 - 在我心中</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109746','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109746"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109746','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109745" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="谢文雅 - 给我十个分手的理由"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="谢文雅 - 给我十个分手的理由"
href="javascript:open_window('ShowMusic.asp?id=109745','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">谢文雅 - 给我十个</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109745','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109745"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109745','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109744" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="李西 - 花花公主"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="李西 - 花花公主"
href="javascript:open_window('ShowMusic.asp?id=109744','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">李西 - 花花公主</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109744','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109744"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109744','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109743" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="李艺善 - 来世也要作伴"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="李艺善 - 来世也要作伴"
href="javascript:open_window('ShowMusic.asp?id=109743','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">李艺善 - 来世也要</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109743','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109743"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109743','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109742" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="何沛澄 - 回家"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="何沛澄 - 回家"
href="javascript:open_window('ShowMusic.asp?id=109742','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">何沛澄 - 回家</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="华人群星1"
href="PL_Singer.asp?NClassid=2785">(华人群..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109742','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109742"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109742','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song16)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song16)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分电影排行结束 --><!-- 第三部分轻音乐排行开始 -->
<DIV id=ph6>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song17 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_10.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="18%">&nbsp;</TD>
<TD class=wtit14line align=left
width="82%"><a href="PL_ShowSinger.asp?SClassid=9" target="_self" class=wtit14line>DJ舞曲 最新歌曲</a></TD>
</TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=254>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109624" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Power Hip-Hop Hardrock"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Power Hip-Hop Hardrock"
href="javascript:open_window('ShowMusic.asp?id=109624','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Power Hip-</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109624','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109624"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109624','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109623" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Hit Dj Music"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Hit Dj Music"
href="javascript:open_window('ShowMusic.asp?id=109623','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Hit Dj Mus</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109623','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109623"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109623','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109622" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Hallaback Girl (DJ Elvis Remix) (Non-Stop) - Fenny"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Hallaback Girl (DJ Elvis Remix) (Non-Stop) - Fenny"
href="javascript:open_window('ShowMusic.asp?id=109622','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Hallaback </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109622','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109622"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109622','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109621" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Little Girl 2005 (Non-Stop) - DJ Jerry/Missy Babe"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Little Girl 2005 (Non-Stop) - DJ Jerry/Missy Babe"
href="javascript:open_window('ShowMusic.asp?id=109621','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Little Gir</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109621','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109621"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109621','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109620" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Alex F (Non-Stop) - Crazy Frogman"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Alex F (Non-Stop) - Crazy Frogman"
href="javascript:open_window('ShowMusic.asp?id=109620','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Alex F (No</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109620','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109620"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109620','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109619" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Music (Non-Stop) - Gabry Ponte/Fargetta"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Music (Non-Stop) - Gabry Ponte/Fargetta"
href="javascript:open_window('ShowMusic.asp?id=109619','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Music (Non</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109619','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109619"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109619','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109618" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="10000 Lovers (Non-Stop) - DJ Jerry"
src="pinluo.com_style1/7.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="10000 Lovers (Non-Stop) - DJ Jerry"
href="javascript:open_window('ShowMusic.asp?id=109618','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">10000 Love</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109618','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109618"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109618','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109617" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="What A Feeling 2005 (Non-Stop) - Global Deejays"
src="pinluo.com_style1/8.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="What A Feeling 2005 (Non-Stop) - Global Deejays"
href="javascript:open_window('ShowMusic.asp?id=109617','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">What A Fee</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109617','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109617"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109617','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109616" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="The Sound Of San Francisco 2005 (Non-Stop) - Global Deejays"
src="pinluo.com_style1/9.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="The Sound Of San Francisco 2005 (Non-Stop) - Global Deejays"
href="javascript:open_window('ShowMusic.asp?id=109616','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">The Sound </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109616','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109616"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109616','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109615" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="We Like To Party (Non-Stop) - Crazy Frogman"
src="pinluo.com_style1/10.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="We Like To Party (Non-Stop) - Crazy Frogman"
href="javascript:open_window('ShowMusic.asp?id=109615','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">We Like To</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="再听DJ音乐选集"
href="PL_Singer.asp?NClassid=3754">(再听D..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109615','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109615"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109615','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song17)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song17)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第三部分轻音乐结束 --></DIV><!-- 第七部分结束 -->
<!-- 第四部分开始 -->
<DIV id=rows4><!-- 第四部分网友上传开始 -->
<DIV id=upload>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=320 border=0>
<FORM name=song6 onSubmit="javascript:return lbsong(this);" action=play.asp
target=Listen>
<TBODY>
<TR>
<TD class=gnavt14line align=middle
background=pinluo.com_style1/music07homeqie_34.gif colSpan=5 height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="25%">&nbsp;</TD>
<TD class=wtit14line align=left
width="75%"><a href="PL_ShowSinger.asp?SClassid=12" target="_self" class=wtit14line>影视合辑 最新歌曲</a></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle height=127>
<table class="tableBorder" cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>排行</TD>
<TD class=black12 align=middle bgColor=#e8efd6 colSpan=2
height=22>歌曲-歌手</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>试听</TD>
<TD class=black12 align=middle width="9%" bgColor=#e8efd6
height=22>下载</TD>
<TD class=black12 align=middle width="10%" bgColor=#e8efd6
height=22>收藏</TD>
</TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109410" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Love Hurts - Nazaried"
src="pinluo.com_style1/1.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Love Hurts - Nazaried"
href="javascript:open_window('ShowMusic.asp?id=109410','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Love Hurts</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109410','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109410"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109410','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109409" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Love Is In The Air - Donnie Adams"
src="pinluo.com_style1/2.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Love Is In The Air - Donnie Adams"
href="javascript:open_window('ShowMusic.asp?id=109409','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Love Is In</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109409','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109409"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109409','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109408" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Beyone The Sea - Greg Hammond"
src="pinluo.com_style1/3.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Beyone The Sea - Greg Hammond"
href="javascript:open_window('ShowMusic.asp?id=109408','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Beyone The</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109408','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109408"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109408','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109407" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="She’s A Lady - Tommy"
src="pinluo.com_style1/4.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="She’s A Lady - Tommy"
href="javascript:open_window('ShowMusic.asp?id=109407','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">She’s A La</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109407','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109407"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109407','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109406" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="Stand By Me - MJ Dave"
src="pinluo.com_style1/5.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="Stand By Me - MJ Dave"
href="javascript:open_window('ShowMusic.asp?id=109406','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">Stand By M</DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109406','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109406"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109406','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
<TR onmousemove=change(this) onmouseout=rechange(this)>
<TD align=middle width="7%" height=22><LABEL><INPUT id=id
type=checkbox value="109405" name=id> </LABEL></TD>
<TD align=middle width="8%" height=22><IMG height=16 alt="I can See It Clearly Now - Harlden"
src="pinluo.com_style1/6.gif" width=17></TD>
<TD class=g12t align=left width="34%" height=22><SPAN
style="WIDTH: 110px"><A class=g12t title="I can See It Clearly Now - Harlden"
href="javascript:open_window('ShowMusic.asp?id=109405','showmusic','width=378,height=161,scrollbars=no')">
<DIV
style="OVERFLOW: hidden; WIDTH: 119px; HEIGHT: 22px">I can See </DIV></A></SPAN></TD>
<TD class=gray12t align=left width="19%"><A class=gray12t
title="广告曲"
href="PL_Singer.asp?NClassid=2794">(广告曲..)</A></TD>
<TD align=middle width="10%" height=22><A
href="javascript:open_window('Play.asp?id=109405','Listen','width=295,height=134')"><IMG
height=12 src="pinluo.com_style1/music07homeqie_17.gif" width=13
border=0></A></TD>
<TD align=middle width="9%" height=22><A
onclick="return call(this.href);"
href="PL_download.asp?id=109405"
target=_blank><IMG height=12 src="pinluo.com_style1/music07homeqie_19.gif"
width=13 border=0></A></TD>
<TD align=middle width="10%" height=22><A href="javascript:open_window('User/PL_UserCollect.asp?action=add&id=109405','CollectMusic','')"><IMG
height=15 src="pinluo.com_style1/music07homeqie_14.gif" width=14
border=0></A></TD></TR>
</TBODY></TABLE>
</TD></TR>
<TR>
<TD align=middle background=pinluo.com_style1/music07homeqie_25.gif colSpan=5
height=28><A href="javascript:CheckAll(song6)"><IMG class=hand
title=选择显示的所有歌曲 height=20 alt=选择显示的所有歌曲
src="pinluo.com_style1/music07zjqie_95.gif" width=42 border=0 name=chkall
value="全 选"></A>&nbsp;&nbsp;<A href="javascript:CheckOthers(song6)"><IMG
id=chkOthers height=20 alt=反向选择歌曲 src="pinluo.com_style1/music07zjqie_97.gif"
width=42 border=0 name=chkOthers></A>&nbsp;&nbsp;<INPUT id=B1 type=image
height=20 alt=请先选择你想听的歌曲后再点击连播 width=42
src="pinluo.com_style1/music07zjqie_99.gif"
name=B1></TD></TR></FORM></TBODY></TABLE></DIV><!-- 第四部分网友上传结束 --><!-- 第四部分点播开始 -->
<DIV id=player>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=654 border=0>
<TBODY>
<TR>
<TD background=pinluo.com_style1/music07homeqie_35.gif height=33>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width="11%">&nbsp;</TD>
<TD class=wtit14line align=left
width="89%">温馨点歌吧</TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=tbline vAlign=top align=middle bgColor=#ffffff height=135>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="99%" border=0>
<TBODY>
<TR>
<TD align=left bgColor=#f3f3f3 height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>chenbingcai</SPAN><SPAN
class=gray12t>为</SPAN><SPAN class=blue12>wo</SPAN><SPAN
class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=28193','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[原来我一直都不孤单]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#ffffff height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=10723','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[烟花]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#f3f3f3 height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=14855','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[偶遇]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#ffffff height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=10566','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[呐喊]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#f3f3f3 height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=10570','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[遗失的美好]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#ffffff height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=19103','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[香水百合]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#f3f3f3 height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=24887','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[C大调 (Le tea奇异果法式果茶 广告歌)]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR>
<TR>
<TD align=left bgColor=#ffffff height=22><SPAN class=org12><SPAN
class=gray12t>·</SPAN>楼上的猫</SPAN><SPAN class=gray12t>为</SPAN><SPAN
class=blue12>巧克力糖球</SPAN><SPAN class=gray12t>点播</SPAN><A
href="javascript:open_window('ShowMusic.asp?id=24886','Listen','width=376,height=150,scrollbars=no')"><SPAN
class=green12u>[不痛 (韩剧[你来自哪颗星]全球中文指定曲)]</SPAN></A><SPAN
class=gray12t>附言:祝你年年发财,事事如意......</SPAN></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD vAlign=top align=middle bgColor=#ffffff>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width=654 border=0>
<TBODY>
<TR>
<TD vAlign=bottom align=left width=10><IMG height=10
src="pinluo.com_style1/music07homeqie_39.gif" width=10></TD>
<TD vAlign=bottom align=left width=634>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD bgColor=#82d31b height=1></TD></TR></TBODY></TABLE></TD>
<TD vAlign=bottom align=right width=11><IMG height=10
src="pinluo.com_style1/music07homeqie_41.gif"
width=11></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV><!-- 第四部分点播结束 --></DIV><!-- 第四部分结束 --><!-- 第五部分开始 -->
<DIV id=rows5>
<DIV id=radio1><IFRAME src="pinluo.com_style1/live.htm" frameBorder=0 width="100%"
scrolling=no height=187></IFRAME></DIV></DIV><!-- 第五部分结束 -->
<map name="Map"><area shape="rect" coords="10,233,36,302" href="PL_Speciallist.asp" target="_self" alt="查看全部专辑">
</map>
<style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
.STYLE1 {color: #006600}
-->
</style><br><br>
<!-- 版权说明开始 -->
<center>
<DIV id=foot>
<table class="tableBorder" cellSpacing=3 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD bgColor=#7bc91f height=4></TD></TR></TBODY></TABLE>
<table class="tableBorder" cellSpacing=3 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD align=middle>
<table class="tableBorder" cellSpacing=0 cellPadding=0 width="85%" border=0>
<TBODY>
<TR>
<TD width=21><IMG height=47
src="/pinluo.com_style1/music07zjqie_116.gif" width=21></TD>
<TD class=g12t
bgColor=#e8efd6>免责声明:任何单位或个人认为通过我们的内容可能涉嫌侵犯其合法权益,应该及时向我们书面反馈,并提供身份证明、权属证明及详细侵权情况证明,我们在收到上述法律文件后,将会尽快移除被控侵权内容。联系E-mail:pinluo.com#163.com</TD>
<TD align=right width=22><IMG height=47
src="/pinluo.com_style1/music07zjqie_118.gif"
width=22></TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD class=black12 align=middle height=40><STRONG><a href="http://127.0.0.1/" target="_blank" class="STYLE1">版权所有:品络软件科技工作室</a>&nbsp;&nbsp;<a href="http://www.pinluo.com/" target="_blank" class="STYLE1" title="本站基于 品络音乐管理系统1.0 架构">Power by PinLuo.com</a>&nbsp;&nbsp;<a href="http://www.miibeian.gov.cn/" target="_blank" class="STYLE1">ICP备案证书:桂ICP备08000707号</a>&nbsp; <script src='http://s135.cnzz.com/stat.php?id=786724&web_id=786724&show=pic' language='JavaScript' charset='gb2312'></script></STRONG></TD>
</TR></TBODY></TABLE></DIV></center><!-- 版权说明结束 -->
</BODY></HTML>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化