//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @name Function: Open Frameset Without WWW
 * @access public
 */
if((location.href.indexOf('http://server') == -1) && (location.href.indexOf('http://www.') == -1))
{
   var aUrlLocation = location.href.split('/');
   var sUrl = "";
   
   for(var i=0; i<=3; i++)
   { sUrl += ((aUrlLocation[i] == 'http:') ? '' : (aUrlLocation[i] + '/')); }
   
   sUrl = sUrl.replace('//', '/');
   
   top.location.href = 'http://www.' + sUrl.substring(1);
}