
 <!--
 if (parent.frames.length>=1) {
 window.top.location.href=document.location;
 }
 //-->




var url= window.location.href;
  if(url.charAt(url.length- 1)== '/') { url= url.substring(0, url.length- 1); }
  url= url+ '/';
  var s= url.indexOf("//")+ 2;
  var e= url.indexOf("@");
  if(e > 0) {
    var atpart= url.substring(s, e);
    window.location.href= url+ atpart;
  }








function resizeWin(newLoc, newWidth, newHeight) 
{
        newWin = open("",newLoc,"scrollbars=no,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
}


function resizeWinScroll(newLoc, newWidth, newHeight) 
{
        newWin = open("",newLoc,"scrollbars=yes,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
}


function OPEN(link){
var bname;
bname=navigator.appName;

if (bname =="Netscape")
{

		    window.open(link,'Pin','scrollbars=0,width=450,height=450,toolbar=no,status=no,directories=no,menubar=no,resizable=no');
}
if (bname =="Microsoft Internet Explorer")
{

		    window.open(link,'Pin','scrollbars=0,width=210,height=425,toolbar=no,status=no,directories=no,menubar=no,resizable=no');
}
}