CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!
Free 3 Months



Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.web_parts_and_personalization Tags:
Item Type: NewsGroup Date Entered: 2/1/2008 4:20:28 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 17 Views: 47 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
18 Items, 1 Pages 1 |< << Go >> >|
asp_netvb
Asp.Net User
WebPart not showing Minimize and Close Links2/1/2008 4:20:28 PM

0/0

I created a user control that retrieves data from a database and added it to my webpart. All works well exept that I do not see the minimize and close links. Not sure what would cause this to happen. Please help!!!

<%@ Page Language="VB" %>

<%@ register src="App_Data/databind.ascx" tagname="displaymodevb" tagprefix="uc2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form2" runat="server">

<div>

<asp:WebPartManager ID="WebPartManager2" runat="server" />

<asp:WebPartZone ID="WebPartZone2" runat="server">

<ZoneTemplate>
<uc2:displaymodevb id="grid9" runat="server" title="First Web Part" width="500" />
</ZoneTemplate>

</asp:WebPartZone>

</div>

</form>

</body>
</
html>

darsho
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 6:16:28 PM

0/0

 set your webpartmanager.displaymode to design mode 

WebPartZone has 2 properties that you can use :

CloseVerb-Enabled

CloseVerb-Visible

and also for the delete verb.

make its value to true

hope it helps


Mark As Answer If my reply helped you.
vinz
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 6:57:10 PM

0/0

 You should have something like this in your pageload event for you to see those verbs..

 this.WebPartManager1.DesignMode = WebPartManager.DesignDisplayMode; 


Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post fixed your problem.

Blog

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 7:39:41 PM

0/0

I changed my WebPart but I'm not sure where to change the WebPartMangers DisplayMode to DesignMode.

<asp:WebPartZone ID="WebPartZone2" CloseVerb-Enabled="true" CloseVerb-Text="close" runat="server">

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 7:55:44 PM

0/0

When I add this to the Page_Load Event I receive a message that says "this" is not declared also I have an message witht the semicolon to.

 

darsho
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 8:02:34 PM

0/0

WebPartManager1.DisplayMode = WebPartManager.DesignDisplayMode;

add them in the page_load

 


Mark As Answer If my reply helped you.
vinz
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 8:08:46 PM

0/0

Please note that you are using WebPartManager2 not WebPartManager1 so have it this way

 this.WebPartManager2.DesignMode = WebPartManager.DesignDisplayMode;

or

WebPartManager2.DesignMode = WebPartManager.DesignDisplayMode;

The "this" keyword is optional to use 

 


Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post fixed your problem.

Blog

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 8:57:41 PM

0/0

Still no dice! Below is what I have as my Page_Load

<script runat="server">

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

WebPartManager2.DesignMode = WebPartManager.DesignDisplayMode;

End Sub

</script>

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 9:02:58 PM

0/0

This is the error that I receive from the line you had me add. 

System.Web.UI.Control.Protected Friend Read Only Property (DesignMode) As Boolean Is not Accessible in this context because it it protected friend

vinz
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 9:43:01 PM

0/0

 Im sorry.. Please ignore my last post.. It should be DisplayMode not DesignMode..  so have it this way below

WebPartManager2.DisplayMode = WebPartManager.DesignDisplayMode; 


Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post fixed your problem.

Blog

darsho
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/1/2008 9:46:45 PM

0/0

didnt you try my last post it is displayMode not DesignMode?

WebPartManager1.DisplayMode = WebPartManager.DesignDisplayMode;


Mark As Answer If my reply helped you.
darsho
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/2/2008 10:19:43 AM

0/0

any progress?


Mark As Answer If my reply helped you.
asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/4/2008 1:26:02 PM

0/0

I made the change to the below but now I'm receiving a different error message.

ERROR MESSAGE:

The specified display mode is currently disabled on this page. Make sure personalization is enabled for the current user.

Line 9:  <script runat="server">
Line 10:     Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Line 11:         WebPartManager1.DisplayMode = WebPartManager.DesignDisplayMode
Line 12:     End Sub
Line 13: </script>

vinz
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/4/2008 2:28:41 PM

0/0

Are you sure that you are using WebPartManager1 ? Please check the ID of you WebpartManager that you are using


Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post fixed your problem.

Blog

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/4/2008 2:37:33 PM

0/0

Yes, please see below for what I have.

<script runat="server">

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

WebPartManager1.DisplayMode = WebPartManager.DesignDisplayMode

End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form2" runat="server">

<div>

 

<asp:WebPartManager ID="WebPartManager1" runat="server" />

<asp:WebPartZone ID="WebPartZone2" runat="server">

 

<ZoneTemplate>

<uc2:displaymodevb id="grid9" runat="server" title="First Web Part" width="500" />

</ZoneTemplate>

</asp:WebPartZone>

asp_netvb
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/4/2008 3:45:16 PM

0/0

My problem the whole time is that I needed to use Windows Authentiction within my web.config file.

vinz
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/4/2008 3:48:20 PM

0/0

That code should work...  


Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post fixed your problem.

Blog

littlefool
Asp.Net User
Re: WebPart not showing Minimize and Close Links2/5/2008 7:39:38 AM

0/0

Have you personalization enabled in your web.config file? You should have something like this in it.

    <webParts>
      <personalization defaultProvider="SqlPersonalizationProvider">
        <providers>
          <add name="SqlPersonalizationProvider" type="System.Web.UI.WebControls.WebParts.SqlPersonalizationProvider" 
connectionStringName=
"PortalDB" applicationName="Portal"/> </providers> </personalization> </webParts>

 Also it needs to have the personalization DB set-up when you use the default SqlPersonalizationProvider. I had the same problem once before and the DB set-up was the cause of it.


"Dream as if you'll live forever, live as if you'll die today" (James Dean)
18 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Professional ASP.NET 3.5: In C# and VB Authors: Bill Evjen, Scott Hanselman, Devin Rader, Pages: 1673, Published: 2008
Programming ASP.NET: Building Web Applications and Services with ASP.NET 2.0 Authors: Jesse Liberty, Dan Hurwitz, Pages: 930, Published: 2005
SharePoint 2007 User's Guide: Learning Microsoft's Collaboration and Productivity Platform Authors: Seth Bates, Tony Smith, Pages: 407, Published: 2007
SharePoint 2003 User's Guide Authors: Seth Bates, Tony Smith, Pages: 340, Published: 2005
Programming Visual Basic 2005 Authors: Jesse Liberty, Pages: 548, Published: 2005
Microsoft Office SharePoint Server 2007: The Complete Reference Authors: David Matthew Sterling, David Sterling, Pages: 788, Published: 2007
SharePoint User's Guide Authors: Bryan Acker, Infusion Development Corporation, Tyler Davey, Robert McGovern, Infusion Development Corporation, Pages: 136, Published: 2005
Beginning Visual C# 2005 Authors: Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White, Pages: 1062, Published: 2006
Essential ASP.Net 2.0 Authors: Fritz Onion, Keith Brown, Pages: 345, Published: 2006
ASP.NET 2.0: A Developer's Notebook Authors: Wei Meng Lee, Pages: 326, Published: 2005

Web:
WebPart not showing Minimize and Close Links - ASP.NET Forums Re: WebPart not showing Minimize and Close Links. 02-01-2008, 1:16 PM. Contact ... Re: WebPart not showing Minimize and Close Links. 02-01-2008, 1:57 PM ...
ASP.NET: WebPart Close and Minimize Links I have a WebPart (code is below) that works fine with retrieving my data from DB , but it does not display the Minimize and Close links.
MSDN New to Web Part Development :: Minimize and Close and HTML output I still need a bit of help with the close and minimize links, though. To clarify , the close and minimize DO appear on my Web part I've developed. ...
Building Web Parts, Part 1 | O'Reilly Media May 23, 2005 ... Note that the Calendar control itself does not support the ... Clicking on the arrow will reveal two links: Minimize and Close. ...<br /><a href="http://blogs.msdn.com/mharder/archive/2007/01/23/webparts-and-asp-net-ajax-1-0.aspx" title="Mike Harder's Blog : WebParts and ASP.NET AJAX 1.0" target="_" ><b>Mike Harder's Blog : WebParts and ASP.NET AJAX 1.0</b></a> Modify WebParts page (drag and drop, minimize, restore, close, add, delete) without ... but it does not work and is not supported in ASP.NET AJAX 1.0. ...<br /><a href="http://www.exforsys.com/tutorials/asp.net-2.0/asp.net-2.0-working-with-web-parts.html" title="ASP.NET 2.0 Training : Working with Web Parts" target="_" ><b>ASP.NET 2.0 Training : Working with Web Parts</b></a> Aug 28, 2006 ... The layout of the web part mimics a window and has a caption bar and has the links to maximize, minimize and close actions. ...<br /><a href="http://dotnetslackers.com/articles/aspnet/UsingWebPartsInASPNet20.aspx" title="Using WebParts in ASP.Net 2.0" target="_" ><b>Using WebParts in ASP.Net 2.0</b></a> The Browse mode is the default mode of webparts. In Browse mode we can not drag and drop the webparts but we can see two options, minimize and close. ...<br /><a href="http://www.carlosag.net/Articles/WebParts/moreRealSample.aspx" title="Another ASP.NET WebParts Connections Sample" target="_" ><b>Another ASP.NET WebParts Connections Sample</b></a> The first thing to notice is that we are not adding any WebPart to the WebPartZone, .... page that allows you to minimize/restore/close parts of your page. ...<br /><a href="http://en.csharp-online.net/Web_Parts_Recipes%E2%80%9411.1_Discussion" title="Web Parts Recipes—11.1 Discussion at C# Online.NET (CSharp-Online.NET)" target="_" ><b>Web Parts Recipes—11.1 Discussion at C# Online.NET (CSharp-Online.NET)</b></a> Figure 11-6. Web part minimized, showing available buttons. When the Close button is clicked, the web part is removed from the page but is not deleted. ...<br /><a href="http://www.dotnetspider.com/resources/19430-Web-Parts.aspx" title="Web Parts Articles, samples and tutorials" target="_" ><b>Web Parts Articles, samples and tutorials</b></a> Click on the link to the Web Parts page. You should see two Web Parts, complete with Minimize and Close commands. The Web Parts live ...<br /></div></td> <td valign="top"> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 7; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script></td> </tr></table> <br /> <table width="100%"> <tr> <td style="width: 50%"> </td> <td> </td> </tr> </table> <br /> <div style="text-align:center"> <br /> <br /> <b>Search This Site: </b> <input type="hidden" name="cx" value="001993386287184627138:djlrq6ok3yq" /> <input type="hidden" name="cof" value="FORID:10" /> <input type="text" name="q2" id="q2" size="25" onkeypress="if(event.keyCode == 13){SearchSite('q2');return false;}" value="" /> <input type="button" name="sa" value="Search" class="Button" onclick="SearchSite('q2');" /> </div> <br /> <script type="text/javascript"> function doSubscribe(S, E){ DoSubscribe(620161, S,E); } function doFavorite(S, E){ DoFavorite(620161, S,E); } </script> </td> <td id="rightPanel" valign="top" style="width: 100px; text-align: right;"> <div style="text-align: left; font-weight: bold; margin-left: 15px"><br /> <img src="http://www.codeverge.net/images/icons/envelope2.gif" /> <a rel="nofollow" onclick="OpenInviteWin();">Invite</a><br /> <img src="http://www.codeverge.net/images/icons/folders.gif" /> <a href="../History/history_items.aspx" id="ctl00_CPH_RightMenu_A2" rel="nofollow">History</a> <br /> <img src="http://www.codeverge.net/images/icons/books.gif" /> <a href="../resources/computers" id="ctl00_CPH_RightMenu_A1">Resources</a><br /> <img style="border:0px" src="http://www.codeverge.net/images/icons/user2.gif" /> <a href="../members.aspx" id="ctl00_CPH_RightMenu_A6">Members</a><br /> <img src="http://www.codeverge.net/images/icons/statements.gif" /> <a href="../sitemap/SiteMap.aspx" id="ctl00_CPH_RightMenu_A5" rel="nofollow">SiteMap</a> </div> <br /> <br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 3; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 3; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 2; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 2; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <div style="height: 100px"></div> <div style="width: 100px; overflow: hidden; text-align: left; padding: 5px; font-family: Arial;"> <br /> <a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/how-to-store-a-value-in-a-hidden-field-with-a-return-value-from-a-javascript-function" title="how to store a value in a hidden field with a return value from a javascript function" >how to store a value in a hidden field with a return value from a javascript function</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/webpartzone-control-disappear-after-i-click-close-button-on-previous-debug" title="webpartzone control disappear after i click close button on previous debug" >webpartzone control disappear after i click close button on previous debug</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/sharepoint-discussion-board-email-subscription" title="sharepoint discussion board email subscription" >sharepoint discussion board email subscription</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/could-not-select-catalogparts-in-customize-catalogzone" title="could not select catalogparts in customize catalogzone" >could not select catalogparts in customize catalogzone</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/gridview-won-t-display-in-web-part" title="gridview won't display in web part" >gridview won't display in web part</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/server-error-message" title="server error message" >server error message</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/-allow-users-verbs-entersharedscope-in-web.config-file" title="<allow users="*" verbs="entersharedscope"/> in web.config file" ><allow users="*" verbs="entersharedscope"/> in web.config file</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/prevent-a-particular-role-from-using-the-close-verb-in-a-web-part" title="prevent a particular role from using the close verb in a web part" >prevent a particular role from using the close verb in a web part</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/creating-new-users" title="creating new users" >creating new users</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/dynamically-adding-webpart-properties" title="dynamically adding webpart properties" >dynamically adding webpart properties</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/setting-profile-properties-for-others" title="setting profile properties for others." >setting profile properties for others.</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/need-a-sharepoint-web-part" title="need a sharepoint web part." >need a sharepoint web part.</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/pm-box-for-web-part" title="pm box for web part?" >pm box for web part?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/home-page-with-out-toolbar-address-bar-menubar-title-bar-status-bar" title="home page with out toolbar,address bar, menubar,title bar. status bar" >home page with out toolbar,address bar, menubar,title bar. status bar</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/where-do-web-part-properties-get-stored" title="where do web part properties get stored?" >where do web part properties get stored?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/newbie-here-with-server-and-schema-issues" title="newbie here with server and schema issues" >newbie here with server and schema issues</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/exception-when-exporting-web-parts" title="exception when exporting web parts" >exception when exporting web parts</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/webpart-with-grid-with-select-enabled-and-problem-with-postback" title="webpart with grid with select enabled and problem with postback" >webpart with grid with select enabled and problem with postback</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/isclosed-property-hope-that-somebody-got-answer-to-it" title="isclosed property (hope that somebody got answer to it)" >isclosed property (hope that somebody got answer to it)</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/how-to-save-a-file-from-memory-to-user" title="how to save a file from memory to user?" >how to save a file from memory to user?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/web-parts-in-wss-3-help-plsz" title="web parts in wss 3 help plsz" >web parts in wss 3 help plsz</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/implementation-of-refresh-verb" title="implementation of refresh verb..." >implementation of refresh verb...</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/how-to-get-the-system-tools-character-map" title="how to get the system tools character map" >how to get the system tools character map</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/any-way-to-expire-web-parts-after-a-certain-time-period" title="any way to expire web parts after a certain time period?" >any way to expire web parts after a certain time period?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/implementing-a-profile-provider" title="implementing a profile provider" >implementing a profile provider</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/load-webparts-new-user-setup" title="load webparts new user setup" >load webparts new user setup</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/developing-portal-ui-architectures-with-web-parts" title="developing portal ui architectures with web parts" >developing portal ui architectures with web parts</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/loading-web-parts-in-order" title="loading web parts in order" >loading web parts in order</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/creating-profiles-for-users-logging-into-my-site-organiser" title="creating profiles for users logging into my site (organiser)" >creating profiles for users logging into my site (organiser)</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.web_parts_and_personalization/catalogzone-not-displayed" title="catalogzone not displayed" >catalogzone not displayed</a><br/><br/> </div> </td> </tr> <tr> <td id="leftBottom" valign="top" style="width: 100px">   </td> <td id="ctl00_centerBottom" valign="top" align="center"> <b> <a rel="nofollow" href='http://www.codeverge.net/sitemap/privacy.aspx'>Privacy</a> | <a rel="nofollow" href='http://www.codeverge.net/sitemap/contact.aspx'>Contact Us</a></b> <br /> All Times Are GMT </td> <td id="rightBottom" valign="top" style="width: 100px"> </td> </tr> </table> <script type="text/javascript"> //<![CDATA[ var _Rating_MemberRating = -1; var _Rating_tbl = document.getElementById('ctl00_CPH_centerFront_ctl28'); function Rating_RollRates(){ if(_Rating_tbl.rows.length < 10){ for ( i =10 ; i >0; i--){ setTimeout( function(){ var row = _Rating_tbl.insertRow(_Rating_tbl.rows.length); var cell = row.insertCell(0); cell.onclick = function(){Rating_RateIt(this.innerHTML);}; cell.innerHTML = 12 - _Rating_tbl.rows.length; cell.className = 'Rating_AvgRating'; if(cell.innerHTML == _Rating_MemberRating){ cell.title='My Rating'; cell.style.color='orange'; } }, (10-i) * 25); } setTimeout(function(){Rating_Close()},10000) } else{ Rating_Close() } } function Rating_Close(){ if(_Rating_tbl.rows.length > 1) for ( i =0 ; i < 10; i++) setTimeout(function(){ _Rating_tbl.deleteRow(_Rating_tbl.rows.length -1 )} , i * 25) } function Rating_RateIt(rating){ ItemPageWs.RateItem(620161, rating, function(A){ document.getElementById('ctl00_CPH_centerFront_ctl29').innerHTML ='('+ parseFloat(A[0]).toFixed(2) +', '+ A[1] +')'; _Rating_MemberRating = rating; Rating_RollRates(); AlertMsg('Your Rating Was Updated'); Afirm( document.getElementById('ctl00_CPH_centerFront_ctl29')); }); } RestrictHeights('tcContent');Sys.Application.initialize(); //]]> </script> </form> </body> </html> <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=searchbox_001993386287184627138%3Adjlrq6ok3yq&lang=en"></script> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-3447589-1"); pageTracker._trackPageview(); </script>