<!--
/*
	============================================================
	Basic fce
	============================================================
	Copyright: www.eastburger.cz (c) 2011 All rights reserved.
	============================================================
 	Spoluprace:
	------------------------------------------------------------
*/


function CreateLink(str3, str2, str1, sText, sTitle){
	atsign = '@';

	tmp = '<a href="mailto:' + str1 + atsign + str2 + '.' + str3 + '"';
	if(sTitle != '') tmp += ' title="' + sTitle + '"';
	tmp += '>';

	if(sText != '') tmp += sText + '</a>';
	else tmp += str1 + atsign + str2 + '.' + str3 + '</a>';

	document.write(tmp);
}

function NewWindow(theElement){
	var objWnd = window.open(theElement.href);
	objWnd.focus();
}

function PaggingGoToPage(theElement, sUrl, sUrlEnd){
	window.location.href = sUrl+theElement.value+sUrlEnd;
}

//-->
