function CheckForm(thisForm) {
	if (thisForm.nick.value == "") {
		alert('Please enter your Nick!');
		thisForm.nick.focus();
		return false;		
	}
	else if (thisForm.email.value == "") {
		alert('Please enter your E-mail!');
		thisForm.email.focus();
		return false;
	}
	return true;
}
HorWin='';
function HorPub(id){
	if(HorWin!='')HorWin.close();
	var HorUrl ='horoscope/' + id + '.htm';
	HorWin = window.open(HorUrl,'Hor','dependent,width=400,height=400,left=200,top=10,scrollbars=yes'); 
	HorWin.focus();
}
