/**
* v. 1.2
*/

function windowNew( adres, wid, hei, tytul, iReturn ){
  if ( !tytul )
    tytul = '';
  if( !iReturn )
    iReturn = false;

	if( !wid )			// przypisanie domyslnych wartosci
		var wid = 750;
	if( !hei )
		var hei = 530;

	if( +wid > 750 )			// ograniczenie rozmiarow okna i dodanie 20px do jego wielkosci
		wid=750;
	else
		wid = +wid + 40;

	if( +hei > 530 )
		hei= 530
	else
		hei = +hei + 40;	//

	var tx = ( screen.availWidth - wid ) / 2;	// miejsce pojawienia sie okna na ekranie
	var ty = ( screen.availHeight - hei ) / 2;	//

  refOpen = window.open( adres, tytul, "height="+hei+",width="+wid+",top="+ty+",left="+tx+",resizable=yes,scrollbars=yes,status=0;" );
  
  if( iReturn == true )
  	return refOpen
} // end function windowNew

// var oknoUpload = window.open('js/uploading.html','oknoUpload','height=220,width=370,location=no,menubars=no,scrollbars=no,toolbars=no,resizable=no,left=370,top=280');


function windowFoto( adresFoto, tytylStrony, sPageUrl ){
	if( !tytylStrony )
		tytylStrony = 'Foto';
	reS = /\s/gi;

  if( !sPageUrl || sPageUrl.replace( reS, "" ) == '' )
    sPageUrl = 'http://ox.pl/';

  refFoto = window.open( sPageUrl + "okno.php?p=showFoto&adresFoto=" + adresFoto + "&tytylStrony=" + tytylStrony, tytylStrony, "heigth=500,width=700,top=20,left=20,resizable=yes,scrollbars=yes,status=0;" );

} // end function windowFoto

function getWindowPlace( zmniejsz ){
  if( !zmniejsz )
    zmniejsz = 0;
	var miejsce = screen.availHeight - zmniejsz;

  return miejsce;
} // end function getWindowPlace

function makeDivBigger() {
    //alert('makeDivBigger');
    document.getElementById('expandDiv').style['height'] = 300+'px';
    document.getElementById('klubOXbanner').style['visibility'] = 'hidden';
    document.getElementById('podmenu3AD').style['visibility'] = 'hidden';
}

function makeDivSmaller() {
    //alert('makeDivSmaller');
    document.getElementById('expandDiv').style['height'] = 100+'px';
    document.getElementById('klubOXbanner').style['visibility'] = 'visible';
    document.getElementById('podmenu3AD').style['visibility'] = 'visible';
}

function skyscraperLess()
{
    //alert ('less');
    document.getElementById('skyDIV').style.width = "120px";
    document.getElementById('skyDIV').style.left = "0px";
    document.getElementById('skyBaner').style.width = "120px";
    document.getElementById('skyBaner').style.height = "600px";
    document.getElementById('skyBaner').style.left = "0px";
}

function skyscraperMore()
{
    //alert ('more');
    document.getElementById('skyDIV').style.width = "570px";
    document.getElementById('skyDIV').style.left = "-510px";
    document.getElementById('skyBaner').style.left = "60px";
    document.getElementById('skyBaner').style.width = "570px";
    document.getElementById('skyBaner').style.height = "600px";
}

