
function tisk2(art) {
window.open("http://virtually.cz/clanek_tisk.php3?art=" + art, "tisk","height=20,width="+ window.screen.width*0.9 +",resizable=no,left="+ window.screen.width*0.05 +",top=100,screenX=100,screenY=100,scrollbars=no,toolbar=0,location=0,");
}
function mail2(art) {
window.open("http://virtually.cz/email.php3?art=" + art, "mail","height=250,width=500,resizable=no,left=" + ((window.screen.width/2) - (250 + 10)) + ",top=" + ((window.screen.height/2) - (335/2 + 25)) + ",scrollbars=no,toolbar=0,location=0,");
}
function komentar2(art) {
window.open("http://virtually.cz/komentar.php?art=" + art, "_blank","height=" + ((window.screen.height)-150) + ",width=550,resizable=no,left=" + ((window.screen.width-550)/2) + ",top=50,scrollbars=1,toolbar=0,location=0,");
}
function komentar2_news(art) {
window.open("http://virtually.cz/komentar.php?news=true&art=" + art, "_blank","height=" + ((window.screen.height)-100) + ",width=450,resizable=no,left=" + ((window.screen.width-450)/2) + ",top=0,scrollbars=1,toolbar=0,location=0,");
}
function komentar2_event(art) {
window.open("http://virtually.cz/komentar.php?event=true&art=" + art, "_blank","height=" + ((window.screen.height)-100) + ",width=450,resizable=no,left=" + ((window.screen.width-450)/2) + ",top=0,scrollbars=1,toolbar=0,location=0,");
}

//zobrazeni title-----------------------------------------
function ShowTitle(idText){
	var text = new Array();
	text[1] = "Zboží je fyzicky umístěno na našem skladu a je připraveno<br />k okamžitému odběru nebo zaslání na Vaši adresu."
	text[2] = "Zboží je na cestě do našeho skladu, termín možného odběru<br />zjistíte tlačítkem ?Ks po přihlášení."
	text[3] = "Použité, servisované nebo nekompletní zboží, které je<br />připraveno k okamžitému odběru nebo zaslání na Vaši adresu."
    document.getElementById('showElem').innerHTML = text[idText];
    document.getElementById('showElem').style.visibility = "visible";
    }
function getMouse(e){
	var x;
	var y; 	
	if (navigator.appName=="Microsoft Internet Explorer" || navigator.appName=="Opera"){
		x = window.event.x-110;
		y = window.event.y+5;
    }
	if (navigator.appName=="Netscape"){
		x = e.screenX-100;
		y = e.screenY-110;
    }
    x =  x + document.body.scrollLeft; 
    y =  y + document.body.scrollTop;
	document.getElementById('showElem').style.left = x;
    document.getElementById('showElem').style.top  = y;
}
function HideTitle(){
    document.getElementById('showElem').style.visibility = "hidden";
    }

