////
//// LAUNCH
////

/*

function xLaunch(url, title)
{
  var s = SHARETHIS.addEntry({
    url: url,
    title: title
  }, {button:false,popup:true});
  s.popup()
  return false;
}

*/

function maxWindow()
{

if(document.all)
{
this.resizeTo(screen.availWidth,screen.availHeight);
}
else if(document.layers || document.getElementById)
{
if(top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}

this.resizeTo(screen.availWidth,screen.availHeight);
this.moveTo(0,0);

}