function openPopUp(id) 
{
	wysokosc = 450;
	szerokosc = 600;
	wysokosc +=15;
	
	window.open('http://www.podloga.com/show_quest_res.php?id='+id,'prewiev','directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no');
	return false;
}

function openInterview(id, height)
{
	window.open('http://www.podloga.com/interview.php?id='+id+'', '','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width=710,height='+height+'');
}

function print_this_news(id, file){
	
	win=window.open(file+'?id='+id,'','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,fullscreen=no,channelmode=no,width=640,height=550');
	win.focus();
	
	return false;
	print_html = '<h1>'+title+'</h1><br />'+news;
	//alert('przed if');
	if(window.confirm('Czy na pewno wydrukować tę wiadomość?'))
	{
		//alert('W if');
		document.getElementById('print_me').innerHTML = print_html;		
		setTimeout('window.print();',33);		
	}
	//alert('za if');

	return false;

}

function externalLinks() 
{
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) 
	{
		var anchor = anchors[i];
		var relvalue = anchor.getAttribute("rel");
		
		if (anchor.getAttribute("href")) 
		{
			var external = /external/;
			var relvalue = anchor.getAttribute("rel");
			if (external.test(relvalue)) { anchor.target = "_blank"; }
		}
	}
}
window.onload = externalLinks;