function DoOpen(theUrl, iType)
{
	var iWidth;
	var iHeight;
	
	switch(iType)
    {
		case 1:   iWidth = 420; iHeight = 630; break
		case 2:   iWidth = 620; iHeight = 630; break
		case 3:   iWidth = 620; iHeight = 430; break
		case 4:   iWidth = 420; iHeight = 430; break
		case 5:   iWidth = 900; iHeight = 675; break
		default:  iWidth = 420; iHeight = 430;
    }
	
	var iLeft	= (screen.width - iWidth) / 2;
    var iTop	= 30;
	
	sName		= 'Ñíèìêà' + Math.round(Math.random()*1000);
	
	sParameters = 'width=' + iWidth + ',height=' + iHeight + ',left=' + iLeft + ',top=' + iTop + ',resizable=no,toolbar=no,status=no,scrollbars=no,menubar=no,directories=no,location=no,dependant=no';
	
	window.open(theUrl, sName, sParameters, false, false);
}