You could use a picaxe to control the temp running a program something like this (untested and not syntax checked)
Code:
Symbol temp = b1
Symbol delay = b2
Symbol burner = C.2
delay = 10
Main:
Readtemp PIN# temp
if temp < 73 then
High burner
goto main
endif
'%%%%%%%%%%%%%%%%%%
If temp >75 then temp_down
If temp < 75 then temp_up
goto main
'%%%%%%%%%%%%%%%%%%%
Temp_down:
if delay < 60 then
delay = delay +1
endif
goto cycle
'%%%%%%%%%%%%%%%%%%%
Temp_up:
if temp > 1 then
delay = delay -1
endif
goto cycle
'%%%%%%%%%%%%%%%%%%
Cycle:
high burner
pause delay
low burner
pause 10
Goto main
'%%%%%%%%%%%%%%%%%%
Once it reached 73C it would start to cycle, and at the most it would be on for 60 sec and off for 10 sec.
OR
On for 1 second and off for 10 sec.
OR
Somewhere in between with a 10 sec off period.
You would need a solid state relay (AC) or a triac to do the mains switching.
Its One option following on what Rob suggested.