老潘 发表于 2008-2-29 13:06:06

请重庆车友看看,蛮好玩的!

<div id="chan_newsTitle">重庆男子名叫陈冠希遇尴尬 自称很霉很无辜(图)</div>
      <div id="chan_newsInfo"> 2008-02-29 08:12:40 重庆晚报&nbsp;
<!---SSE COMENTEND SSE--->
</div>
      





<script language="JavaScript" type="text/javascript">
function Marquee()
{
        this.ID = document.getElementById(arguments);
        if(!this.ID)
        {
                this.ID = -1;
                return;
        }
        this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.Correct = this.CTL = this.StartID = this.Stop = this.MouseOver = 0;
        this.Step = 1;
        this.Timer = 30;
        this.DirectionArray = {"top":0 , "bottom":1 , "left":2 , "right":3};
        if(typeof arguments == "number" || typeof arguments == "string")this.Direction = arguments;
        if(typeof arguments == "number")this.Step = arguments;
        if(typeof arguments == "number")this.Width = arguments;
        if(typeof arguments == "number")this.Height = arguments;
        if(typeof arguments == "number")this.Timer = arguments;
        if(typeof arguments == "number")this.DelayTime = arguments;
        if(typeof arguments == "number")this.WaitTime = arguments;
        if(typeof arguments == "number")this.ScrollStep = arguments
        this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden";
        this.ID.noWrap = true;
        this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1);
        if(arguments.length >= 7)this.Start();
}


Marquee.prototype.Start = function()
{
        if(this.ID == -1)return;
        if(this.WaitTime < 800)this.WaitTime = 800;
        if(this.Timer < 20)this.Timer = 20;
        if(this.Width == 0)this.Width = parseInt(this.ID.style.width);
        if(this.Height == 0)this.Height = parseInt(this.ID.style.height);
        if(typeof this.Direction == "string")this.Direction = this.DirectionArray;
        this.HalfWidth = Math.round(this.Width / 2);
        this.HalfHeight = Math.round(this.Height / 2);
        this.BakStep = this.Step;
        this.ID.style.width = this.Width + "px";
        this.ID.style.height = this.Height + "px";
        if(typeof this.ScrollStep != "number")this.ScrollStep = this.Direction > 1 ? this.Width : this.Height;
        var msobj = this;
        var timer = this.Timer;
        var delaytime = this.DelayTime;
        var waittime = this.WaitTime;
        msobj.StartID = function(){msobj.Scroll()}
        msobj.Continue = function()
                                {
                                        if(msobj.MouseOver == 1)
                                        {
                                                setTimeout(msobj.Continue,delaytime);
                                        }
                                        else
                                        {        clearInterval(msobj.TimerID);
                                                msobj.CTL = msobj.Stop = 0;
                                                msobj.TimerID = setInterval(msobj.StartID,timer);
                                        }
                                }

        msobj.Pause = function()
                        {
                                msobj.Stop = 1;
                                clearInterval(msobj.TimerID);
                                setTimeout(msobj.Continue,delaytime);
                        }

        msobj.Begin = function()
                {
                        msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth : msobj.ID.scrollHeight;
                        if((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll <= msobj.Width + msobj.Step))return;
                        msobj.ID.innerHTML += msobj.ID.innerHTML;
                        msobj.TimerID = setInterval(msobj.StartID,timer);
                        if(msobj.ScrollStep < 0)return;
                        msobj.ID.onmousemove = function(event)
                                                {
                                                        if(msobj.ScrollStep == 0 && msobj.Direction > 1)
                                                        {
                                                                var event = event || window.event;
                                                                if(window.event)
                                                                {
                                                                        if(msobj.IsNotOpera)
                                                                        {
                                                                                msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX;
                                                                        }
                                                                        else
                                                                        {
                                                                                msobj.ScrollStep = null;
                                                                                return;
                                                                        }
                                                                }
                                                                else
                                                                {
                                                                        msobj.EventLeft = event.layerX - msobj.ID.scrollLeft;
                                                                }
                                                                msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2;
                                                                msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft);
                                                                msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep*2) / msobj.HalfWidth);
                                                        }
                                                }
                        msobj.ID.onmouseover = function()
                                                {
                                                        if(msobj.ScrollStep == 0)return;
                                                        msobj.MouseOver = 1;
                                                        clearInterval(msobj.TimerID);
                                                }
                        msobj.ID.onmouseout = function()
                                                {
                                                        if(msobj.ScrollStep == 0)

                                                        {
                                                                if(msobj.Step == 0)msobj.Step = 1;
                                                                return;
                                                        }
                                                        msobj.MouseOver = 0;
                                                        if(msobj.Stop == 0)
                                                        {
                                                                clearInterval(msobj.TimerID);
                                                                msobj.TimerID = setInterval(msobj.StartID,timer);
                                                        }
                                                }
                }
        setTimeout(msobj.Begin,waittime);
}

Marquee.prototype.Scroll = function()
{
        switch(this.Direction)
        {
                case 0:
                        this.CTL += this.Step;
                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
                        {
                                this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL;
                                this.Pause();
                                return;
                        }
                        else
                        {
                                if(this.ID.scrollTop >= this.ClientScroll)
                                {
                                        this.ID.scrollTop -= this.ClientScroll;
                                }
                                this.ID.scrollTop += this.Step;
                        }
                break;

                case 1:
                        this.CTL += this.Step;
                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
                        {
                                this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL;
                                this.Pause();
                                return;
                        }
                        else
                        {
                                if(this.ID.scrollTop <= 0)
                                {
                                        this.ID.scrollTop += this.ClientScroll;
                                }
                                this.ID.scrollTop -= this.Step;
                        }
                break;

                case 2:
                        this.CTL += this.Step;
                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
                        {
                                this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL;
                                this.Pause();
                                return;
                        }
                        else
                        {
                                if(this.ID.scrollLeft >= this.ClientScroll)
                                {
                                        this.ID.scrollLeft -= this.ClientScroll;
                                }
                                this.ID.scrollLeft += this.Step;
                        }
                break;

                case 3:
                        this.CTL += this.Step;
                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
                        {
                                this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL;
                                this.Pause();
                                return;
                        }
                        else
                        {
                                if(this.ID.scrollLeft <= 0)
                                {
                                        this.ID.scrollLeft += this.ClientScroll;
                                }
                                this.ID.scrollLeft -= this.Step;
                        }
                break;
        }
}
</script>


<div style="overflow: hidden; width: 536px; height: 25px;" id="EndPageRollText">
<br><br><ul><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700618.html" target="_blank">审计署发现社保案内情 沪杭高速收费权违规转让</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700614.html" target="_blank">美国众议院外委会通过涉台决议案 中方坚决反对</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700608.html" target="_blank">卫生部新闻办澄清:戊肝肆虐传言不实</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14699531.html" target="_blank">07年城乡恩格尔系数罕见上升 收入差距继续拉大</a></li><li><a href="http://news.china.com/zh_cn/hmt/1004/20080229/14700570.html" target="_blank">谢长廷全力支持“入联公投”:不领票就不爱台</a></li><li><a href="http://news.china.com/zh_cn/international/1000/20080229/14700544.html" target="_blank">英最大虐童丑闻曝光 160名儿童遭毒打强暴(图)</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14699787.html" target="_blank">军博3月1日起免费开放 日接待量不超过3万人</a></li></ul>
<ul><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699557.html" target="_blank">网友为假新闻照片排座次 周老虎邱非典上榜(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14700826.html" target="_blank">基金公司狠发年终奖留员工 四十万是中等水平</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699580.html" target="_blank">父母用绳子拴2孩子街头讨钱 家有10万存款(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699520.html" target="_blank">初三生网上学制烟幕弹爆炸 双手拇指被炸飞(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699494.html" target="_blank">40岁农民强奸96岁老妪致死 因发育迟滞被判死缓</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699486.html" target="_blank">武汉籍留学生自办色情网站获刑10年 会员达10万</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699501.html" target="_blank">雄鸟死亡 雌鸟哀伤守护“爱人”不愿离去(组图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699526.html" target="_blank">重庆男子名叫陈冠希遇尴尬 自称很霉很无辜(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699583.html" target="_blank">66岁教师和18岁女学生同死浴室 女学生全身赤裸</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699589.html" target="_blank">重庆一下岗工人将三轮摩托改装成直升机(组图)</a></li></ul>

<ul><li><a href="http://news.china.com/zh_cn/international/1000/20080229/14700832.html" target="_blank">印拟出拒绝投资公司名单 多家中国企业名列其中</a></li><li><a href="http://news.china.com/zh_cn/international/1000/20080229/14700828.html" target="_blank">美国芝加哥美容院瓦斯爆炸造成至少9人受伤(图)</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700664.html" target="_blank">中国企业在印度遭遇“安全门” 被列招商黑名单</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700618.html" target="_blank">审计署发现社保案内情 沪杭高速收费权违规转让</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700614.html" target="_blank">美国众议院外委会通过涉台决议案 中方坚决反对</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14700608.html" target="_blank">卫生部新闻办澄清:戊肝肆虐传言不实</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14699531.html" target="_blank">07年城乡恩格尔系数罕见上升 收入差距继续拉大</a></li><li><a href="http://news.china.com/zh_cn/hmt/1004/20080229/14700570.html" target="_blank">谢长廷全力支持“入联公投”:不领票就不爱台</a></li><li><a href="http://news.china.com/zh_cn/international/1000/20080229/14700544.html" target="_blank">英最大虐童丑闻曝光 160名儿童遭毒打强暴(图)</a></li><li><a href="http://news.china.com/zh_cn/domestic/945/20080229/14699787.html" target="_blank">军博3月1日起免费开放 日接待量不超过3万人</a></li></ul>
<ul><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699557.html" target="_blank">网友为假新闻照片排座次 周老虎邱非典上榜(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14700826.html" target="_blank">基金公司狠发年终奖留员工 四十万是中等水平</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699580.html" target="_blank">父母用绳子拴2孩子街头讨钱 家有10万存款(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699520.html" target="_blank">初三生网上学制烟幕弹爆炸 双手拇指被炸飞(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699494.html" target="_blank">40岁农民强奸96岁老妪致死 因发育迟滞被判死缓</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699486.html" target="_blank">武汉籍留学生自办色情网站获刑10年 会员达10万</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699501.html" target="_blank">雄鸟死亡 雌鸟哀伤守护“爱人”不愿离去(组图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699526.html" target="_blank">重庆男子名叫陈冠希遇尴尬 自称很霉很无辜(图)</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699583.html" target="_blank">66岁教师和18岁女学生同死浴室 女学生全身赤裸</a></li><li><a href="http://news.china.com/zh_cn/social/1007/20080229/14699589.html" target="_blank">重庆一下岗工人将三轮摩托改装成直升机(组图)</a></li></ul>
</div>
<script>new Marquee("EndPageRollText",0,1,536,25,30,3000,3000,25)</script>
<div id="chan_newsDetail">
<script type="text/javascript"><!--
                        function openWithSelfMain(url,name,width,height,top,left,noscrollbars){
                                        width2=(width<=screen.width)?width:(screen.width*3/4);
                                        height2=(height<=screen.height)?height:(screen.height*3/4);
                                        var options = "width=" + width2 + ",height=" + height2;
                                        if(top!="") options += ",top="+ top;
                                        if(left!="") options += ",left="+ left;
                                        options += "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no";
                                        if(noscrollbars == null || noscrollbars == "" || noscrollbars == "0" || width>screen.width || height>screen.height){
                                        options += ",scrollbars=yes";
                                        }else{
                                        options+= ",scrollbars=no";
                                        }
                                        //alert(width+">>"+height);
                                        //return false;
                                        new_window = window.open(url, name, options);
                                        window.self.name = "main";
                                        new_window.focus();
                        }
//--></script>&nbsp;&nbsp;&nbsp;&nbsp;<center><img src="http://news.china.com/zh_cn/social/1007/20080229/images/14699526_436263.jpg" alt="重庆男子名叫陈冠希遇尴尬 自称很霉很无辜(图)" title="重庆男子名叫陈冠希遇尴尬 自称很霉很无辜(图)" border="0"><br>&nbsp;&nbsp;&nbsp;&nbsp;重庆名叫陈冠希的普通市民</center><br><clk>&nbsp;“陈冠希,有你的新艳照出来吗?”“陈冠希,最近很惨!”……此陈冠希非彼陈冠希,他只是重庆一位普通<nobr id="key0" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,12);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,12, this);" onmouseout="kwL(event, this);" onmousemove="kwM(12);">市民</nobr>。因与香港明星陈冠希同名,行事低调的他,最近人气超高,每天都会有人拿“艳照门”来调侃他。他说最近的感觉就一个字:烦!</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b> 我叫陈冠希 很霉很无辜 </b><br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;“烦惨了,真倒霉。”家住江北区建新东路127号的陈冠希,是重庆长安<nobr id="key4" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,4);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,4, this);" onmouseout="kwL(event, this);" onmousemove="kwM(4);">集团</nobr>特种机械厂职工。这位23岁的重庆小伙虽不是明星,但也是公认的帅哥,最近却因与明星陈冠希同名,徒增很多烦恼。</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;每天只要一出门,认识他的人,都会暧昧地凑上来打趣:“陈冠希,昨晚耍得好吗?”“陈冠希,过来过来,摆一摆你的艳史嘛!”“今天你的<nobr id="key8" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,9);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,9, this);" onmouseout="kwL(event, this);" onmousemove="kwM(9);">消息</nobr>又更新了哟,到底有好多张艳照?”……起初,他总是一笑了之,“毕竟大家只是开玩笑的嘛。”时间一长,他颇感烦恼。周围的同事或朋友,每次看到陈冠希的相关<nobr id="key5" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,5);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,5, this);" onmouseout="kwL(event, this);" onmousemove="kwM(5);">报道</nobr>,就特意把报纸拿给他看:“快点看看,又有新消息!”每次说到“艳照门”事件,大家都会有意无意地看看他,“好像那些事是我做的一样,感觉很不舒服。”</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;朋友们拿他逗乐,亲戚们也不例外。<nobr id="key3" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,3);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,3, this);" onmouseout="kwL(event, this);" onmousemove="kwM(3);">过年</nobr>到亲戚家做客,一大屋人,原本三三两两在摆龙门阵,见他进屋,所有人齐刷刷地看向他:“大明星来了哟,赶紧让座……”大家你一句,我一句,将焦点对准他。“搞得我头都抬不起来,又不好发作。”</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b><clk>&nbsp;我叫陈冠希 <nobr id="key7" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,7);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,7, this);" onmouseout="kwL(event, this);" onmousemove="kwM(7);">生活</nobr>多尴尬 </clk></b><br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;“我也不晓得妈老汉为啥给我取陈冠希这个名字。”因父母离异早,陈冠希不知道父母当初给他取名寄予了何种期望。随着香港的陈冠希迅速蹿红<nobr id="key1" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,0);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,0, this);" onmouseout="kwL(event, this);" onmousemove="kwM(0);">娱乐</nobr>圈,自己遭遇的尴尬就多起来。</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;结识新朋友时,陈冠希常会遭遇尴尬——很多时候,当他面带微笑作完自我介绍,对方就会回敬一句:“陈冠希?我还是刘德华哟!”他只好反复解释,别人才相信他真的叫陈冠希。<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;有时,大庭广众之下遇到熟人,尴尬也会随之上演。有一次,他刚走到杨家坪步行街,一位很久没遇到的朋友远远看到他就大喊:“陈冠希!陈冠希!”街上的行人立即向他看过来,一直盯着他,议论纷纷。他的脸也“唰”地变得通红,“感觉很不自在。”<br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;就连在网吧玩“泡泡卡丁车”<nobr id="key6" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,6);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,6, this);" onmouseout="kwL(event, this);" onmousemove="kwM(6);">游戏</nobr>,都无法摆脱“陈冠希”影响。因参加游戏的队员之间,经常要自报家门,他一喊“陈冠希”,就会引起一阵哄笑:“陈冠希也来玩游戏呀……”</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;
处理尴尬的办法,他要么一笑了之,要么一言不发。生活虽因与明星同名多了很多尴尬,陈冠希却未作改名打算。他认为,名字仅仅是一种称呼、一个代号,“真正
的朋友,不会因你的名字而改变对你的看法。”同时,他认为自己一直把这个名字与明星分得很清楚:“明星是明星,我还是我。他再怎么红,我也不会因为他刻意
去改变什么。”<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>    我叫陈冠希 偶像是谢霆锋 </b><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;虽说与热门明星同名,但这位陈冠希,却未因此以明星陈冠希为偶像,“我的偶像是谢霆锋。”<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;平常,他会关注谢霆锋的消息,喜欢看他演的电影和电视剧,及时收听他的新专辑,“感觉他很酷,很有个性。”对陈冠希,他反倒很少留意,许多关于明星陈冠希的消息,他都是通过朋友的玩笑获知。<br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;“那你有没有因为喜欢谢霆锋,而讨厌自己叫‘陈冠希’这个名字?”<nobr id="key9" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,10);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,10, this);" onmouseout="kwL(event, this);" onmousemove="kwM(10);">记者</nobr>笑着问,陈冠希笑着摇了摇头:“我还是比较理智,对娱乐圈的是是非非,只是看热闹。”</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;<b> 相关话题<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;你如何看待<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;与明星同名 </b><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;据了解,我市有17个“陈冠希”、7个“钟欣桐”、1个“张柏芝”,686个“刘德华”……与大明星同名,感觉如何?一荣俱荣,一损俱损?抑或“事不关己,爱咋地咋地”?记者随机采访了数十位市民,听大家谈“明星名”。<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;“跟明星同名,也要看对象,要是跟陈冠希同名,整天都不得安宁。”家住星宇花园小区的秦道学认为,和明星同名很正常,但若跟一个是非多、负面新闻多的明星同名会很烦,“周围的人不仅常拿你开玩笑,还会拿你和这个明星比较。”<br>&nbsp;&nbsp;&nbsp;&nbsp;<br><clk>&nbsp;重庆人生导航企业<nobr id="key2" style="border-bottom: 1px dotted rgb(102, 0, 255); text-decoration: underline; color: rgb(102, 0, 255); background-color: transparent;" onclick="return kwC(event,1);" target="_blank" oncontextmenu="return false;" onmouseover="kwE(event,1, this);" onmouseout="kwL(event, this);" onmousemove="kwM(1);">管理</nobr>咨询公司的陈明说:“名字仅仅是个符号,周围的人不会把你和明星等同起来。玩笑,也仅仅限于娱乐一下,不必当真。走自己的路,让别人说去。”他建议拥有明星名的市民,调整好自己的心态,不要让名字影响自己的生活。</clk><br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;
“叫陈冠希、张柏芝、钟欣桐的,都赶紧去买彩票,说不定中大奖。”家住中天大厦的梁先生开玩笑说。他认为,和明星同名,有利有弊。利在于,可借明星名更快
地推销自己,引人注目,让对方一下子记住自己。弊端在于,行事低调者或性格内向者,会因明星名陷入尴尬,甚至很“受伤”。他建议父母给孩子取名时,最好避
开明星名,以免徒增烦恼。</div>

小乖 发表于 2008-2-29 13:48:08

霉翻了

老晏 发表于 2008-2-29 14:09:23

同情噻,还能说什么?还好,不是我的这个“晏照门”。:lol

小乖 发表于 2008-2-29 18:25:51

老晏你小心点,说不定那天你的晏照门就现身了
页: [1]
查看完整版本: 请重庆车友看看,蛮好玩的!