<?php if (!defined('SITE')) exit('No direct script access allowed');
/**
* Backgrounded
*
* Full Size Backgrounded
*
* @version 1.0
* @author Vaska
*/
function full_background() {
    // we'll just get it from the page background image
    global $rs;
        if ($rs['bgimg'] != '') {
        // get the dimensions
        $size = getimagesize(DIRNAME . '/files/' . $rs['bgimg']);
        return "<img src='" . BASEURL . "/files/$rs[bgimg]' width='$size[0]' height='$size[1]' alt=''/>";
        }
    return;
}
?>