function MakeSearchWithCheck(key){
	if (key == 13){
		MakeSearch();
	}
}

function MakeSearch(){
	if (document.getElementById("inpSearch").value != ""){
		document.forms['formsearch'].submit();
	}
}

function OpenPopup(url, width, height) {
	window.open(url, '', 'width=' + width + ',height=' + height + ',left=100,top=100,menubar=0,location=0,resizable=0,scrollbars=0,directories=0,scroll=0,status=0,menubar=0,locationbar=0,statusbar=0,titlebar=0,toolbar=0');
}