// JavaScript Document

function openAd(page) {
	popupWin = window.open(page,'sludinajums','width=750,height=620,top=100,left=250,scrollbars=yes');
	popupWin.focus();
	return false;
}

function startChat(page) {
	popupWin=window.open(page,'sarunas','width=558,height=288,top=100,left=400,scrollbars=yes');
	popupWin.focus();
	return false;
}
function DraugiemSay( title, url, titlePrefix ){
	window.open(
	  'http://www.draugiem.lv/say/ext/add.php?title=' + encodeURIComponent( title ) +
	  '&link=' + encodeURIComponent( url ) +
	  ( titlePrefix ? '&titlePrefix=' + encodeURIComponent( titlePrefix ) : '' ),
	  '',
	  'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400'
	 );
	return false;
}