var movingObj=null;
var correctX;
var correctY;

document.onmouseup = ratUp;
document.onmousemove = ratMove;
function ratDown()
{
	active(10);
	movingObj=this.parentNode.style;
	correctX=event.clientX-parseInt(movingObj.left);
	correctY=event.clientY-parseInt(movingObj.top);
//	mouseDownX=event.clientX;
//	mouseDownY=event.clientY;
}
function ratUp()
{
	movingObj = null;
	if (winOpened)
		noactive(10);
}
	
function ratMove()
{
	if (movingObj)
		{
			movingObj.top=event.clientY-correctY;
			movingObj.left=event.clientX-correctX;
			return false;
		}
}

function winClose()
{

	var main=this.parentNode;
	var o = main.removeChild(main.firstChild);
  	delete o;
	o = main.removeChild(main.firstChild);
  	delete o;
  	o = main.removeChild(main.firstChild);
  	delete o;
  	o = main.parentNode.removeChild(main);
  	delete o;
	winOpened=false;
}


function changeDivHeight()
{
	document.getElementById('content').style.height=parent.winHeight-23+"px"
}

function closeAk(){active(8);}
function closenoAk(){noactive(8);}

function openImage(src,wdth,hght)
{
	winOpen(100,100,src,wdth,hght);
}

function openCV()
{
    winOpen(50,50,"images/grayone.gif",500,500);
var imgBar=document.createElement("IFRAME");
	imgBar.src="cv.html";
	imgBar.className="cv";
	imgBar.frameBorder="0";
	imgBar.id="frmcv";
	//bylo by dobre odstranit obrazek
	document.getElementById('imagewin').appendChild(imgBar);
    	//document.getElementById('imagewin').innerHTML+="<iframe src='cv.html' frameborder='0' class='cv' style='width:500px;height:497px'>"
}

function openContact()
{
    winOpen(50,50,"images/grayone.gif",250,260);
var imgBar=document.createElement("IFRAME");
	imgBar.src="kontakt3.html";
	imgBar.className="contact";
	imgBar.frameBorder="0";
	imgBar.id="frmcv";
	//bylo by dobre odstranit obrazek
	document.getElementById('imagewin').appendChild(imgBar);
}

function openAktualitu()
{
    winOpen(50,50,"images/grayone.gif",500,352);
var imgBar=document.createElement("IFRAME");
	imgBar.src="rekl-tehotne.html";
	imgBar.className="contact";
	imgBar.frameBorder="0";
	imgBar.id="frmcv";
	imgBar.style.width=500;
	imgBar.style.height=352;
	//bylo by dobre odstranit obrazek
	
	document.getElementById('imagewin').appendChild(imgBar);
	
	imgBar=document.createElement("SPAN");
	imgBar.style.position="absolute";
	imgBar.style.left="10px";
	imgBar.style.top="2px";
	imgBar.id="spantextbar";
	imgBar.className="text"
	imgBar.innerHTML="Aktuální nabídka pro vás";
	document.getElementById('imagewin').appendChild(imgBar);
	//alert (getElementById("spantextbar");
	
}

function openPricelist()
{
    winOpen(50,50,"images/grayone.gif",500,500);
var imgBar=document.createElement("IFRAME");
	imgBar.src="pricelist.html";
	imgBar.className="cv";
	imgBar.frameBorder="0";
	imgBar.id="frmcv";
	//bylo by dobre odstranit obrazek
	document.getElementById('imagewin').appendChild(imgBar);
    	//document.getElementById('imagewin').innerHTML+="<iframe src='cv.html' frameborder='0' class='cv' style='width:500px;height:497px'>"
}

function winOpen(xPos,yPos,html,wdt,hgt){
	//scroll="no";
	//wdt=100;
	//hgt=100;
	if (!winOpened)
	{
	winOpened=true;
	var pMain=document.getElementById("main");
	var imgWin=document.createElement("DIV");
		imgWin.style.position="absolute";
		imgWin.style.width=wdt+2+"px";
		imgWin.style.height=hgt+23+"px";
		imgWin.style.left=xPos+"px";
		imgWin.style.top=yPos+"px";
		imgWin.style.backgroundColor="#FFFFFF";
		imgWin.style.border="1px solid black";
		imgWin.id="imagewin";
		imgWin=pMain.appendChild(imgWin);
	var imgBar=document.createElement("IMG");
		imgBar.src="images/whiteone.gif";
		imgBar.className="bar";
		imgBar.id="10";
		imgBar.onmousedown=ratDown;
		imgWin.appendChild(imgBar);
	var imgBar=document.createElement("IMG");
		imgBar.src="images/close01.gif";
		imgBar.className="close";
		imgBar.id="8";
		imgBar.onmouseover=closeAk;
		imgBar.onmouseout=closenoAk;
		//try{imgPh.style.cursor="pointer";}
		//catch(ex){imgPh.style.cursor="hand";}
		imgBar.onclick=winClose;
		imgWin.appendChild(imgBar);
		imgBar=document.createElement("IMG");
		imgBar.className="contIfr";
		imgBar.width=wdt;
		imgBar.height=hgt;
        imgBar.src=html;
        imgBar.id="imgB";
		imgWin.appendChild(imgBar);
		}
		else //return false;
		{
            imgWin=document.getElementById('imagewin');
            if(document.getElementById('frmcv'))
				imgWin.removeChild(document.getElementById('frmcv'));
			imgBar=document.getElementById('imgB');
			imgBar.src="images/whiteone.gif";
			imgBar.src=html;
			imgBar.width=wdt;
			imgBar.height=hgt;
			
			imgWin.style.width=wdt+2+"px";
			imgWin.style.height=hgt+23+"px";
			
		}
		
}

/*function changeSize()
{
	if (document.getElementById('imgB').complete)
	{
		document.getElementById('imgB').width=globalWidth+"px";
		document.getElementById('imgB').height=globalHieght+"px";
		imgWin=document.getElementById('imagewin');
		imgWin.style.width=globalWidth+2+"px";
		imgWin.style.height=globalHeight+23+"px";
		clearTimeout(chTime);
	}
	else
    	chTime=setTimeout('changeSize()',100);
}*/
