

Event.observe(window, 'load', function() {

});
function reply() {
	if ($('replyContainer').style.display=='none'){ 
		Modalbox.resizeToInclude('replyContainer'); 
		setTimeout('$(\'replyContainer\').show();',500);
	} else { 
		$('replyContainer').hide(); 
		setTimeout('Modalbox.resizeToContent();',500); 
	}
	return false;
}
function makeSelectFromChildren(container, tag_id, rel, el_name, el_id) {
	el = $(container);
	AjaxRequest('/.select_model.php','tag_id='+tag_id+'&rel='+rel+'&el_name='+el_name+'&el_id='+el_id, function(r){
		el.update(r);
	});
}
function watchlist(adID) {
	return AjaxRequest('/.watchlist.php', 'id='+adID, alert);
}
