/**
 * Page loads banners into the 'banners' array and
 *      defines functions needed for rollbanners
 *
 * You must define section_id before referencing this script!
 *
 * ratko@kramfid.org, 12.4.2005
 */

var cookie_path = "stirileprotv.ro";    // <-- cookie path is for awstats_misc_tracker.js

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// NO MAX BANNERS FOR CZ - BBMEDIA IS USED INSTEAD
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

function load_banners()
{
	// no normal banners for CZ
}


function banner_video_flash_render()
{

}

    /* Set visibility of banner position 'id' based on 'show' value */
    function bannerPositionVisibility(id, show, type) {
		if ((typeof(type) == "string") && (type == "visibility")) {
			property = "visibility";
			propertyOn = "visible";
			propertyOff = "hidden";
		} else {
			property = "display";
			propertyOn = "block";
			propertyOff = "none";
		}
		if ((typeof(show) == "boolean") && show) {
			$(id).setStyle(property, propertyOn);
			return true;
		} else {
			$(id).setStyle(property, propertyOff);
			return false;
		}
	}

