function popw(loc,nam,wid,hei,othe) {
if (window.screen)
{
x = (screen.availWidth - wid) * 0.5;
y = (screen.availHeight- hei) * 0.5;
}
else
{
x = 50;
y = 50;
}
var popupw;
if (othe=='') {popupw=window.open('p.htm',nam,'width='+wid+',height='+hei)
 } else {popupw=window.open('Preloader.htm',nam,'width='+wid+',height='+hei+','+othe)
}
popupw.moveTo(x,y);
l=popupw.focus();
popupw.location.href = loc;
return popupw 
}


function popMiniInfo(Show, Culture)
{
	var kalba;
	switch(Culture)
	{
		case "lt-lt" :
			kalba = "LT";
		break;
		
		case "ru-ru" :
			kalba = "RU";
		break;
		
		case "en-US" :
		default :
			kalba = "EN";		
		break;
	}
    
    popw('http://www.penki.lt/PopupArticle.aspx?Lang='+kalba+'&Element=PopupArticle&Show=' + Show ,'ADS',750,550,'scrollbars=yes')
}