//JavaScript Document

//bottom IE6 status bar text
defaultStatus="AVON kosmetika";

function bar(url)
{ wasOpen  = false;
  win = window.open(url);
  return (typeof(win)=='object')?true:false;
}
  
function writeEmailText(who, where, text)
{ var address = who + "@" + where;
  document.write("<a href=\"mailto:" + address + "\">" + text + "</a>");
}

function writeEmail(who, where)
{ var address = who + "@" + where;
  document.write("<a href=\"mailto:" + address + "\">" + address + "</a>");
}

function string_to_center(wwidth)
{ var paddingleft = (document.body.clientWidth - wwidth)/2;
  document.write(paddingleft);
}

/////////////////////////
//---------------JS ---rozmery okna
function winH() {
	if (window.innerHeight) return window.innerHeight;
	else if (document.documentElement && document.documentElement.clientHeight)
		return document.documentElement.clientHeight;
	else if (document.body && document.body.clientHeight)
		return document.body.clientHeight;
	else return null;
	}
function winW() {
	if (window.innerWidth) return window.innerWidth;
	else if (document.documentElement && document.documentElement.clientWidth)
		return document.documentElement.clientWidth;
	else if (document.body && document.body.clientWidth)
		return document.body.clientWidth;
	else return null;
	}
function rozmery() {
	alert('Sirka okna: '+winW()+'px, vyska okna: '+winH()+'px.');
	}
///////////////////
//------------REKLAMA
function reklama(r_text)
{ var x=904+(winW()-904)/2;
  if (winW()<=904) x=912;
  document.write("<div style=\"position:absolute; left:"+x+"px; top:140px; width:130px;\">"+r_text+"</div>");
  
}

