// JavaScript Document

/**
 * Clone Pedigree
 *
 * @access: public
 * @return: null
 * @author: CFlorin (colotin_f@yahoo.com)
*/
function clonePedigree()
{
	var clonepet_id=document.form_act.clonepet_id.value;
	if(clonepet_id!='' && clonepet_id>0)
	{
		url = 'admin.php?obj=ajax&action=clone_pedigree&clonepet_id='+clonepet_id;
		new Ajax.Updater('pedigreeBox', url, {asynchronous:true});
	}
	else
	{
		alert('No pet set!');
	}
}

/**
 * Gallery Details
 * 
 * @author: CFlorin (colotin_f@yahoo.com)
*/
function galleryDetails(gallery_id)
{
	aDisplayMessage(ROOT_HOST+'index.php?obj=front&action=gallery_details&gallery_id='+gallery_id, 550, 240);
}