﻿/*
===============================================
Developed by Maxim Mayorov,
Florio Fashion. January, 2010.
http://www.florio-fashion.com
===============================================
*/

/*
===============================================
PAGE ONLOAD HANDLER
===============================================
*/

window.onload = function() {
	if (typeof onPageLoad == "function") onPageLoad();
	loadLiveInternet();
}

/*
===============================================
COMMON FUNCTIONS
===============================================
*/

function addBookmark() {
	if (window.sidebar) { // Firefox
		window.sidebar.addPanel("Доставка цветов - Florio Fashion", "http://www.florio-fashion.com", '');
	} else if (window.opera) { //Opera
		with (document.getElementById("bookmark")) {
			rel = "sidebar";
			target = "_search";
			title = "Доставка цветов - Florio Fashion";
			href = "http://www.florio-fashion.com";
		}
	} else if (document.all) { //IE
		window.external.AddFavorite("http://www.florio-fashion.com", "Доставка цветов - Florio Fashion");
	}
}

function loadLiveInternet() {
	var img = new Image;
	var url = "http://counter.yadro.ru/hit?t38.18;r" + escape(document.referrer) + ((typeof (screen) == "undefined") ? "" : ";s" + screen.width + "*" + screen.height + "*" + (screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + ";u" + escape(document.URL) + ";" + Math.random();
	img.src = url;
}