Hi,
I'm not how to explain this but I cannot access the portal admin anymore. Everything was going well up to one week ago. now when I open any of my sites I get a javascript error in IE "Done but with error on page." When I click to see what the error is I see Error : syntax error Code 0. And that is happening on all my sites on the portal. I did not change any of the skins. The result I cannot access the admin login page. When I click the login link, I see error on page on the on the browser bottomm left corner and it goes nowhere. I check in firefox, same deal, nothing happens. Here's the link to one of the site http://www.lornet.org, maybe somebody has an idea of what could have happened. I really need help on that 
I checked the view source code and compare it wth a working DNN site and the only difference is the following :
Working Site
<script type="text/javascript">
<!--
var theForm = document.forms['Form'];
if (!theForm) {
theForm = document.Form;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
</script>
My site
<script type="text/javascript">
var theForm = document.forms['Form'];if (!theForm) {
theForm = document.Form;}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); }
}
>
</script>
As you can see, the comment tag inside the javascript does not appear in my website. I only see the last > instead of the whole tag. That's probably why I get a javascript error. I'm not sure how to resolve this though since it's not something I write myself in the skin. But it looks like the tag is not complete. Maybe it's a file that is corrupted in the DNN install. Any idea ?
Alain