/**
 * js funkce veřejnou část
 *
 * @package		Vitkovice Steel
 */

/**
* otveře obrázek v novém okně ve stránce showimg.htm
*
* @param	string	sFileName	jméno obrázku
* @return	boolean
*/
function bShowImg (sFileName, nWidth, nHeight)
{
	//INSTALL
	img_win=window.open('showimg.htm?'+sFileName,'img_win','height='+nHeight+', width='+nWidth+' toolbar=no, menubar=no, location=no,directories=no,scrollbars=no, status=no, top=50, left=20, titlebar=no');
	img_win.focus ();
	return false;
}

function bShowImg2 (sFileName, nWidth, nHeight)
{
	//INSTALL
	img_win=window.open('showimg.htm?'+sFileName,'img_win','height='+nHeight+', width='+nWidth+' toolbar=no, menubar=no, location=no,directories=no,scrollbars=no, status=no, top=100, left=10, titlebar=no');
	img_win.focus ();
	return false;
}

function bShowImgEn (sFileName, nWidth, nHeight)
{
	//INSTALL
	img_win=window.open('../common/showimg_en.htm?'+sFileName,'img_win','height='+nHeight+', width='+nWidth+' toolbar=no, menubar=no, location=no,directories=no,scrollbars=auto, status=no, top=150, left=150, titlebar=no');
	img_win.focus ();
	return false;
}

function bShowImgDe (sFileName, nWidth, nHeight)
{
	//INSTALL
	img_win=window.open('../common/showimg_de.htm?'+sFileName,'img_win','height='+nHeight+', width='+nWidth+' toolbar=no, menubar=no, location=no,directories=no,scrollbars=auto, status=no, top=150, left=150, titlebar=no');
	img_win.focus ();
	return false;
}
