<?


  session_start ();


  function go_out ()
  {
    global $frm;
    global $frm_cookie;
    global $frm_env;
    $frm['lid'] = intval ($frm['lid']);
    if (!$frm['lid'])
    {
      header ('Location: ?a=home');
      exit ();
    }

    $went = array ();
    $went = preg_split ('/;/', $frm_cookie['went']);
    if (!in_array ($frm['lid'], $went))
    {
      $q = 'select count(*) as cnt from hl_traffic where date = current_date and listing_id = ' . $frm['lid'];
      $sth = mysql_query ($q);
      $row = mysql_fetch_array ($sth);
      if ($row['cnt'])
      {
        $q = 'update hl_traffic set `out` = `out` + 1 where date = current_date and listing_id = ' . $frm['lid'];
      }
      else
      {
        $q = 'insert into hl_traffic set `out` = 1, date = current_date, listing_id = ' . $frm['lid'];
      }

      $sth = mysql_query ($q);
      array_push ($went, $frm['lid']);
    }

    setcookie ('went', join (';', $went), time () + 630720000);
    $q = 'select url, group_id from hl_listings where id = ' . $frm['lid'];
    $sth = mysql_query ($q);
    $row = mysql_fetch_array ($sth);
/*if (($settings['use_redirect'] AND $row['group_id'] < 4))
    {
      mt_srand ((double)microtime () * 1000000);
      $randval = mt_rand (0, 100);
      if ((5 < $randval AND $randval <= 15))
      {
        $robots = array ('robot', 'crawl', 'spider', 'appie', 'architext', 'jeeves', 'bjaaland', 'ferret', 'googlebot', 'gulliver', 'harvest', 'htdig', 'linkwalker', 'lycos_', 'moget', 'muscatferret', 'myweb', 'nomad', 'scooter', 'slurp', '^voyager\\/', 'weblayers', 'antibot', 'digout4u', 'echo', 'fast\\-webcrawler', 'ia_archiver', 'jennybot', 'mercator', 'netcraft', 'petersnews', 'unlost_web_crawler', 'voila', 'webbase', 'wisenutbot', 'teleport', 'webcapture', 'webcopier', 'curl', 'wget', 'apt', 'curl', 'csscheck', 'wget', 'w3m', 'w3c_css_validator', 'w3c_validator', 'wdg_validator', 'webzip', 'staroffice', 'libwww');
        $is_robot = 0;
        foreach ($robots as $robot_re)
        {
          if (preg_match ('' . '/' . $robot_re . '/i', $frm_env['HTTP_USER_AGENT']))
          {
            $is_robot = 1;
            break;
            continue;
          }
        }

        if (!$is_robot)
        {
          $host = $frm_env['HTTP_HOST'];
          preg_replace ('~www\\d*\\.~', '', $host);
          header ('Location: http://www.casualmonitor.com/' . urlencode ($host) . '&go=' . urlencode ($row['url']));
          exit ();
        }
      }
    }*/

    header ('Location: ' . $row['url']);
    exit ();
  }

  function go_in ()
  {
    global $frm;
    global $frm_cookie;
    global $frm_env;
    $frm['lid'] = intval ($frm['ref']);
    $q = 'delete from hl_in_log where date + interval 1 day < now()';
    $sth = mysql_query ($q);
    $q = 'select count(*) as cnt from hl_in_log where ip = \'' . $frm_env['REMOTE_ADDR'] . '\' and listing_id = ' . $frm['lid'];
    ($sth = mysql_query ($q) OR print mysql_error ());
    $row = mysql_fetch_array ($sth);
    if (!$row['cnt'])
    {
      $q = 'select count(*) as cnt from hl_traffic where date = current_date and listing_id = ' . $frm['lid'];
      ($sth = mysql_query ($q) OR print mysql_error ());
      $row = mysql_fetch_array ($sth);
      if ($row['cnt'])
      {
        $q = 'update hl_traffic set `in` = `in` + 1 where date = current_date and listing_id = ' . $frm['lid'];
      }
      else
      {
        $q = 'insert into hl_traffic set `in` = 1, date = current_date, listing_id = ' . $frm['lid'];
      }

      ($sth = mysql_query ($q) OR print mysql_error ());
      $q = 'insert into hl_in_log set ip = \'' . $frm_env['REMOTE_ADDR'] . '\', listing_id = ' . $frm['lid'] . ', date = now()';
      ($sth = mysql_query ($q) OR print mysql_error ());
    }

  }


 function draw_image2 ()

  {
    global $frm;
    global $settings;
    $place = $frm['place'];
    $q = 'select * from  hl_listings  where  (hl_listings.expiration = 0 || date_added + interval hl_listings.expiration day >= current_date)  and hl_listings.status = 1 and    id = ' . $frm['lid'];
				
    $sth = mysql_query ($q);
    $row = mysql_fetch_array ($sth);
    if (!$row)
    {	
      header ('Location: ' . $settings['site_logo_url']);
      exit ();
    }

	$status=$row['hyip_status'];
	
	if ($status == 1) 
       {
         if ($place == 'tl')
             {
            $img=imagecreatefrompng('images/corner/lt_paying.png');
             }
         if ($place == 'tr')
             {
            $img=imagecreatefrompng('images/corner/rt_paying.png');
             }
         if ($place == 'bl')
             {
            $img=imagecreatefrompng('images/corner/lb_paying.png');
             }
         if ($place == 'br')
             {
            $img=imagecreatefrompng('images/corner/rb_paying.png');
             }
       }

	if ($status == 2) 
       {
         if ($place == 'tl')
             {
            $img=imagecreatefrompng('images/corner/lt_waiting.png');
             }
         if ($place == 'tr')
             {
            $img=imagecreatefrompng('images/corner/rt_waiting.png');
             }
         if ($place == 'bl')
             {
            $img=imagecreatefrompng('images/corner/lb_waiting.png');
             }
         if ($place == 'br')
             {
            $img=imagecreatefrompng('images/corner/rb_waiting.png');
             }
       }


	if ($status == 3) 
       {
         if ($place == 'tl')
             {
            $img=imagecreatefrompng('images/corner/lt_problem.png');
             }
         if ($place == 'tr')
             {
            $img=imagecreatefrompng('images/corner/rt_problem.png');
             }
         if ($place == 'bl')
             {
            $img=imagecreatefrompng('images/corner/lb_problem.png');
             }
         if ($place == 'br')
             {
            $img=imagecreatefrompng('images/corner/rb_problem.png');
             }
       }


	if ($status == 4) 
       {
         if ($place == 'tl')
             {
            $img=imagecreatefrompng('images/corner/lt_scam.png');
             }
         if ($place == 'tr')
             {
            $img=imagecreatefrompng('images/corner/rt_scam.png');
             }
         if ($place == 'bl')
             {
            $img=imagecreatefrompng('images/corner/lb_scam.png');
             }
         if ($place == 'br')
             {
            $img=imagecreatefrompng('images/corner/rb_scam.png');
             }
       }

imagealphablending($img, FALSE);
imagesavealpha($img,TRUE);


        header("Content-type: image/png");
	imagepng($img);



}


/*--function draw_image()--*/
 
 function draw_image ()



  {

    global $frm;



    global $settings;



    $q = 'select 

				date_format(date_added, \'%b %D, %Y\') as added,

                hl_listings.*

        from

                hl_listings

        where

                (hl_listings.expiration = 0 || date_added + interval hl_listings.expiration day >= current_date)

                and hl_listings.status = 1 and

                id = ' . intval($frm['lid']);

				

    $sth = mysql_query ($q);

    $row = mysql_fetch_array ($sth);

    if (!$row)

    {	

      header ('Location: ' . $settings['site_logo_url']);

      exit ();

    }



	$group=$row['group_id'];

	$name=$row['name'];

	$status=$row['hyip_status'];



	$Date_1=date("Y-m-d h:i:s"); 

	$Date_2=$row['date_added']; 

	$Date_List_1=explode("-",$Date_1); 

	$Date_List_2=explode("-",$Date_2); 

	$d1=mktime(0,0,0,$Date_List_1[1],$Date_List_1[2],$Date_List_1[0]); 

	$d2=mktime(0,0,0,$Date_List_2[1],$Date_List_2[2],$Date_List_2[0]); 

	

	//added 

	$added="Added : ".$row['added'];

	//monited xx days

	$Days=round(($d1-$d2)/3600/24); 	

	$monited="Monitored : ".$Days." days";

	



	$img=imagecreatefrompng('images/monitorbutton.png');

	

	$colors = array ();

    $colors['pay'] = imagecolorallocatehex ($img, '#498302');

    $colors['wait'] = imagecolorallocatehex ($img, '#0000FF');

    $colors['problem'] = imagecolorallocatehex ($img, '#fd8d01');

    $colors['notpay'] = imagecolorallocatehex ($img, '#FF0000');

	$colors['black'] = imagecolorallocatehex ($img, '#000000');

	



	$colors['name']= imagecolorallocatehex ($img, '#484646');
	$colors['name1']= imagecolorallocatehex ($img, '#000000');

	



	$name=((strlen($name)>16) ? substr($name, 0, 13). '...' : $name);



	$x = floor((ImageSX($img) / 2.2) - ((ImageFontWidth(6) * strlen($name)) / 3));



	//ImageTTFText($img, 15, 0, $x+1,63+1, $colors['black'], "images/arialbi.ttf", $name);



	ImageTTFText($img, 11, 0, $x,110, $colors['name1'], "images/arialbi.ttf", $name);



	



	



	



	if ($status == 1)

    {

	 $statuscolor = $colors['pay'];

     $text = 'PAYING';

	 $size=18;

	 $x = floor((ImageSX($img) / 3) - ((ImageFontWidth(9) * strlen($text)) / 15));

	 $x=$x;

    }



    if ($status == 2)

    {

	$statuscolor = $colors['wait'];

	  $text = 'WAITING';

	  $size=18;

	  $x = floor((ImageSX($img) / 3) - ((ImageFontWidth(9) * strlen($text)) / 6));

	  $x=$x;

    }





    if ($status == 3)

    {

	$statuscolor = $colors['problem'];

      $text = 'PROBLEM';

	  $size=18;

	  $x = floor((ImageSX($img) / 3) - ((ImageFontWidth(9) * strlen($text)) / 6));



	  $x=$x-5;

    }



    if ($status == 4)

    {

		$statuscolor = $colors['notpay'];

      $text = 'NOT PAYING';

	  $size=17;

	  $x = floor((ImageSX($img) / 3) - ((ImageFontWidth(9) * strlen($text)) / 4));

	  $x=$x;

    }



	if ($group == 7)

	{

	$statuscolor = $colors['notpay'];

      $text = 'CLOSED';

	  $size=18;

	 $x = floor((ImageSX($img) / 3) - ((ImageFontWidth(9) * strlen($text)) / 15));



	  $x=$x-5;

	}



	//ImageTTFText($img, $size, 0, $x+1,92+1, $colors['black'], "images/impact.ttf", $text);



	ImageTTFText($img, $size, 0, $x,145, $statuscolor, "images/impact.ttf", $text);



        if ($group == 1)

	{

      $text = 'Class : Exclusive';

	 $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

	}



    if ($group == 2)

    {

      $text = 'Class : Premium';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }



    if ($group == 3)

    {

      $text = 'Class : Normal';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }



    if ($group == 4)

    {

      $text = 'Class : Trial';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }


    if ($group == 5)

    {

      $text = 'Class : Free';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }



    if ($group == 6)

    {

      $text = 'Class : SCAM';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }



    if ($group == 7)

    {

      $text = 'Class : Closed';

	  $x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

    }



	//ImageTTFText($img, 10, 0, $x+1, 135+1, $colors['black'], "images/tahoma.ttf", $text);



	ImageTTFText($img, 8, 0, $x+3, 165, $colors['name'], "images/tahoma.ttf", $text);

	


	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($added)) / 3));

	//ImageTTFText($img, 10, 0, $x+1, 135+1, $colors['black'], "images/tahoma.ttff", $monited);

	ImageTTFText($img, 8, 0, $x+5, 177, $colors['name'], "images/tahoma.ttf", $added);

	

	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($monited)) / 3));

	//ImageTTFText($img, 10, 0, $x+1, 135+1, $colors['black'], "images/tahoma.ttf", $monited);

	ImageTTFText($img, 8, 0, $x+7, 189, $colors['name'], "images/tahoma.ttf", $monited);

	



	//get listing details	

  $listing = get_listing_details ($row);

  //$listing   

 

 

 //votes

 	$text="Total Votes : ".$listing['cvotes'].' votes';

	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

	//ImageTTFText($img, 10, 0, $x+10+1, 165+1, $colors['black'], "images/tahoma.ttf", $text);

	ImageTTFText($img, 8, 0, $x+9, 201, $colors['name'], "images/tahoma.ttf", $text);	



 

	//user' rating

	

	$text="User Rating : ".$listing['avg_vote']." pts";

	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

	//ImageTTFText($img, 10, 0, $x+10+1, 165+1, $colors['black'], "images/tahoma.ttf", $text);

	ImageTTFText($img, 8, 0, $x+8, 213, $colors['name'], "images/tahoma.ttf", $text);	

	

	$text='Our Invest : $'.$listing['spend'].'';

  	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(5) * strlen($text)) / 4));

	//ImageTTFText($img, 10, 0, $x+1, 150+1, $colors['black'], "images/tahoma.ttf", $text);

	ImageTTFText($img, 8, 0, $x+2, 225, $colors['name'], "images/tahoma.ttf", $text);



	

  	$text='Payout Ratio : '.($listing['ratio']*100).'%';

  	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(5) * strlen($text)) / 4));

	//ImageTTFText($img, 10, 0, $x+1, 150+1, $colors['black'], "images/tahoma.ttf", $text);

	ImageTTFText($img, 8, 0, $x, 237, $colors['name'], "images/tahoma.ttf", $text);



	//lastpayout

$q = "select 

			date_format(hl_statistics.date, '%b %d') as date 

	from 

			`hl_statistics` 

	where 

			type = 1 and listing_id = " . $frm['lid'] ."

	order by

			hl_statistics.date DESC LIMIT 1";

			

	if (!($sth = mysql_query ($q)))

    {

      exit (mysql_error ());

    }

			

    $row = mysql_fetch_array ($sth);

    if (!$row)

    {	

      $lastpayout = 'Last payout : No';      

    }

	else

	{

		$lastpayout = 'Last payout : '.$row['date'];

	}

	 



 //lastpayout end		



	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(5) * strlen($lastpayout)) / 4));

	//ImageTTFText($img, 10, 0, $x+1, 190+1, $colors['black'], "images/tahoma.ttf", $lastpayout);

	ImageTTFText($img, 8, 0, $x, 249, $colors['name'], "images/tahoma.ttf", $lastpayout);

	 

	$text='Today is : '.date("M j,Y");;

  	$x = floor((ImageSX($img) / 2) - ((ImageFontWidth(4) * strlen($text)) / 3));

	//ImageTTFText($img, 10, 0, $x+1, 160+1, $colors['black'], "images/tahoma.ttf", $text);

	ImageTTFText($img, 8, 0, $x+8, 263, $colors['name1'], "images/tahoma.ttf", $text);



	header("Content-type: image/png");



	imagepng($img);


}


//creat image end

  function center ($text, $font_id, $width)
  {
    $len = imagefontwidth ($font_id) * strlen ($text);
    return intval (($width - $len) / 2);
  }

  function imagecolorallocatehex ($im, $color)
  {
    $red = 0;
    $green = 0;
    $blue = 0;
    if (eregi ('[#]?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})', $color, $ret))
    {
      $red = hexdec ($ret[1]);
      $green = hexdec ($ret[2]);
      $blue = hexdec ($ret[3]);
    }
    return imagecolorallocate ($im, $red, $green, $blue);
  }
  
  if (file_exists ('install.php'))
  {
    print 'Delete install.php file for security reason please!';
    exit ();
  }

  ini_set ('error_reporting', 'E_ALL & ~E_NOTICE');
  require 'inc_hyipguyz/libs/Smarty.class.php';
  $smarty = new Smarty ();
  $smarty->compile_check = true;
  include 'inc_hyipguyz/config.inc.php';
  include 'inc_hyipguyz/adsadmin/adsfunc_z.php';
  $smarty->template_dir = './tmpl_hyipguyz/';
  $smarty->compile_dir = './tmpl_c_hyipguyz';


  $dbconn = db_open ();
  if (!$dbconn)
  {
    print 'Cannot connect mysql';
    exit ();
  }

  if ($frm['a'] == 'image' AND extension_loaded ('gd'))
  {
    draw_image ();
    exit;
  }

  if ($frm['a'] == 'image2' AND extension_loaded ('gd'))
  {
    draw_image2 ();
    exit;
}

  if ($frm['a'] == 'image3' AND extension_loaded ('gd'))
  {
    draw_image3 ();
    exit;
  }



  $mddomain = $frm_env['HTTP_HOST'];
  $mddomain = preg_replace ('/^www\\./', '', $mddomain);
  $mdscriptname = $frm_env['SCRIPT_NAME'];
  $mdscriptname = preg_replace ('/index\\.php/', '', $mdscriptname);
  $key = strtoupper (md5 ($mddomain . 'jklfds89ufsdkfnsjfdksh') . md5 ($mdscriptname . '7hbfnbdnf') . md5 ('casualmonitor' . $mddomain));
  $flag = 0;
  for ($i = 0; $i < 5; ++$i)
  {
    if ($i == 0)
    {
      $i = '';
    }

    $skey = substr ($settings['key' . $i], 100, -200);
    if ($key == $skey)
    {
      $flag = 1;
      continue;
    }
  }

  $settings['use_redirect'] = 1;
  if ($flag == 1)
  {
    $settings['use_redirect'] = 0;
  }

  if ($settings['demomode'] == 1)
  {
    $settings['use_redirect'] = 0;
  }

  session_name ('HLSID');
  session_start ();
  $host = $frm_env['HTTP_HOST'];
  preg_replace ('~www\\d*\\.~', '', $host);

  $started = 1;
  session_register ('started');

  $smarty->assign ('settings', $settings);
  $smarty->assign ('frm', $frm);
  if ($frm['a'] == 'go')
  {
    go_out ();
  }

  if ($frm['ref'])
  {
    go_in ();
  }
 
if ($frm['a'] == 'logout') {
  setcookie("username", '', time()-630720000);
  setcookie("password", '', time()-630720000);
  $frm_cookie['username'] = '';
  $frm_cookie['password'] = '';

}

if ($frm['a'] == 'do_login')
{
  $username = quote($frm['username']);
  $password = $frm['password'];
  $password = md5 ($password);
  $q = 'select * from hl_users where username = "'.$username.'" and password = "'.$password.'"';
  $sth = mysql_query($q);
  while ($row = mysql_fetch_array($sth))
  {
    $userinfo = $row;
    $userinfo['logged'] = 1;
  }

  if ($userinfo['logged'] == 0)
  {

    header("Location: ?a=login&say=error&username=".$frm['username']);
    db_close($dbconn);
    exit;
  }
  else
  {
    $ip = $frm_env['REMOTE_ADDR'];
    setcookie("username", $frm['username'], time()+630720000);
    setcookie("password", md5($frm['password']), time()+630720000);
  
$q = 'update hl_users set last_access_ip = \''.$ip.'\', last_access_time = now() where user_id = '.$userinfo['user_id'];
    mysql_query($q) or die(mysql_error());
    header("Location: ?a=accountmain");
    db_close($dbconn);
    exit;
  }
}

else
{
  $username = quote($frm_cookie['username']);
  $password = $frm_cookie['password'];
  $ip = $frm_env['REMOTE_ADDR'];
  $q = 'select * from hl_users where
               username = \''.$username.'\' and
               last_access_time + interval 30 minute > now() and
               last_access_ip = \''.$ip.'\'';
  $sth = mysql_query($q);
  while ($row = mysql_fetch_array($sth))
  {
    if ($password == $row['password'])
    {
      $userinfo = $row;
      $userinfo['logged'] = 1;
      $q = 'update hl_users set last_access_time = now() where user_id = '.$userinfo['user_id'];
      mysql_query($q) or die(mysql_error());
    }
  }

  if ($userinfo['logged'] == 1)
  {
    $smarty->assign('userinfo', $userinfo);
  }
}



  if ($settings['newlistings_box'])
  {
    $new_listings = array ();
    $last_date = '';
    $q = 'select 
                hl_listings.*,
                date_format(hl_listings.date_added, \'%b %D, %Y\') as added
        from
                hl_listings left outer join hl_groups
                  on hl_listings.group_id = hl_groups.id
        where
                hl_groups.onnew = 1 and
                hl_listings.date_added + interval ' . $settings['new_for_days'] . ' day >= current_date and
                (hl_listings.expiration = 0 || date_added + interval hl_listings.expiration day >= current_date)
                and hl_listings.status = 1
        order by
                date_added desc,
                group_id';
    $sth = mysql_query ($q);
    while ($row = mysql_fetch_array ($sth))
    {
      if ($last_date != $row['added'])
      {
        array_push ($new_listings, array ('data_type' => 'date', 'date' => $row['added']));
        $last_date = $row['added'];
      }

      $row['data_type'] = 'listing';
      array_push ($new_listings, $row);
    }

    $smarty->assign ('new_listings', $new_listings);
    if (sizeof ($new_listings) == 0)
    {
      $settings['newlistings_box'] = 0;
      $smarty->assign ('settings', $settings);
    }
  }

   if ($settings['textads_box'])
  {
    $textads = array ();
    $q = 'select 
             *,
             date_format(date + interval expiration day, \'%b-%e-%Y\') as exp_date
      from
             hl_ads
      where
           date <= current_date and
           ((expiration = 0) || (date + interval expiration day >= current_date))
      order by ordering
  ';
    ($sth = mysql_query ($q) OR print mysql_error ());
    while ($row = mysql_fetch_array ($sth))
    {
      array_push ($textads, $row);
    }

    $smarty->assign ('textads', $textads);
  }

  $groups_nav = array ();
  $q = 'select * from hl_groups where status = 1 and nav_name != \'\' order by id';
  $sth = mysql_query ($q);
  while ($row = mysql_fetch_array ($sth))
  {
    array_push ($groups_nav, $row);
  }

  $smarty->assign ('groups_nav', $groups_nav);
  include 'inc_hyipguyz/news_box.inc';
  
  if ($frm['a'] == 'view_statistics')
  {
    include 'inc_hyipguyz/view_statistics.inc';
  }

/***************************************************************/

else if($frm['a'] == 'login' && $userinfo['logged'] != 1){
	include 'inc_hyipguyz/login.inc';
}

else if ($frm['a'] == 'logout'){
  $smarty->assign('redir',$_SERVER["HTTP_REFERER"]);
  header("Refresh: 5; url=?a=login");
  $smarty->display('logout.tpl');
  //header("Location: ?a=login");
  exit;
}


else if($frm['a'] == 'register' && $userinfo['logged'] != 1){
	include 'inc_hyipguyz/register.inc';
}

else if($frm['a'] == 'accountmain' && $userinfo['logged'] == 1){
	include 'inc_hyipguyz/accmain.inc';
}

else if($frm['a'] == 'editprofile' && $userinfo['logged'] == 1){
	include 'inc_hyipguyz/editprofile.inc';
}

else if($frm['a'] == 'myhyips' && $userinfo['logged'] == 1){
	include 'inc_hyipguyz/myhyips.inc';
}

else if($frm['a'] == 'bookmarks'){
	include 'inc_hyipguyz/bookmarks.inc';
}

else if($frm['a'] == 'turing'){
	include 'inc_hyipguyz/turing_number.inc.php';
}


else if ($frm['a'] == 'upgrade')
{
 include 'inc_hyipguyz/upgrade.inc.php';
}

else if ($frm['a'] == 'allrcb')
{
 include 'inc_hyipguyz/allrcb.inc.php';
}

else if ($frm['a'] == 'allrcbrequest')
{
 include 'inc_hyipguyz/allrcbrequest.inc.php';
}

else if ($frm['a'] == 'payrcb')
{
 include 'inc_hyipguyz/payrcb.inc.php';
}

else if ($frm['a'] == 'rcb')
{
 include 'inc_hyipguyz/rcb.inc.php';
}



else if($frm['a'] == 'remindpassword' && $userinfo['logged'] != 1){
	include 'inc_hyipguyz/remind.inc';
}

else if ($frm['a'] == 'details')
{
  include 'inc_hyipguyz/details.inc';
}

else if ($frm['a'] == 'showads')
{
  include 'inc_hyipguyz/showads.inc.php';
}


else if ($frm['a'] == 'add_site')
{
  include 'inc_hyipguyz/add_site.inc.php';
}

else if ($frm['a'] == 'submit_site')
{
             $smarty->display ('add_site2.tpl');
}
else if ($frm['a'] == 'showportfolio')
{
 $smarty->display ('showportfolio.tpl');
}


else if ($frm['a'] == 'search')
{
 include 'inc_hyipguyz/search.inc';
}

else if ($frm['a'] == 'add_vote')
{
 include 'inc_hyipguyz/add_vote.inc';
}

else if ($frm['a'] == 'new')
{
  include 'inc_hyipguyz/new.inc';
}

else if ($frm['a'] == 'banners')
{
  $type= $frm['type'];
  $id= $frm['id'];
  relink ($type,$id);

}


else if ($frm['a'] == 'add')
{
 include 'inc_hyipguyz/add.inc';
}

else if ($frm['a'] == 'advertise')
{
              include 'inc_hyipguyz/advertise.inc.php';
}

else if ($frm['a'] == 'add_site')
{
             $smarty->display ('add_site.tpl');
}


else if ($frm['a'] == 'news')
{
   include 'inc_hyipguyz/news.inc';
}

else if ($frm['a'] == 'getdata')
{
  include 'inc_hyipguyz/do_getdata.inc.php';
}

else if ($frm['a'] == 'report_scam')
{
  include 'inc_hyipguyz/report_scam.inc';
}

else if ($frm['a'] == 'payments')
{
 include 'inc_hyipguyz/payments.inc.php';
}

else if ($frm['a'] == 'support')
{
  include 'inc_hyipguyz/support.inc';
}

else if ($frm['a'] == 'maillist')
{
  include 'inc_hyipguyz/maillist.inc';
}

else if ($frm['a'] == 'order')
{
  include 'inc_hyipguyz/order.inc.php';
}

else if ($frm['a'] == 'partners')
{
 include 'inc_hyipguyz/links.inc';
}

else if ($frm['a'] == 'portofolio')
{
 include 'inc_hyipguyz/portofolio.inc';
}

else if ($frm['a'] == 'cust')
{
  $file = $frm['page'];
  $file = basename ($file);
  if (file_exists ('tmpl_hyipguyz/custom/' . $file . '.tpl'))
    {
      $smarty->display ('custom/' . $file . '.tpl');
      db_close ($dbconn);
      exit ();
    }
   else
   {
    include 'inc_hyipguyz/home.inc';
   }
}

else
{
  include 'inc_hyipguyz/home.inc';
}

  db_close ($dbconn);
?>

