function horsePopup(applicationPath, profileType, id) {
	var page;

	page = applicationPath;
	if (profileType=="Studbook")
		page = page + "/Breeding/HorseProfile.aspx/" + id;
	else
	    page = page + "/GoRacing/HorseProfile.aspx/" + id;

	openWindow(page, "HorseProfile", 820, 780, "resizable=yes, scrollbars=yes", true);
}

function profilePopup(applicationPath, cMSid, entityid, trackID, type) {
	var page;

	page = applicationPath + "/JockeysAndTrainers/Profile.aspx/" + cMSid + '/' + entityid + '/' + trackID + '/'  + type;

	openWindow(page, "Profile", 960, 840, "resizable=yes, scrollbars=yes", true);
}
